C# 클래스 SimpleConcurrency.Actors.StandardThreadPoolScheduler

A simple scheduler using the standard .NET thread pool.
상속: IScheduler
파일 보기 프로젝트 열기: sdanzan/SimpleConcurrency

공개 메소드들

메소드 설명
Schedule ( System.Action action ) : void

Queue the provided Action to be exceuted as a worker by the .NET ThreadPool.

메소드 상세

Schedule() 공개 메소드

Queue the provided Action to be exceuted as a worker by the .NET ThreadPool.
public Schedule ( System.Action action ) : void
action System.Action Job to schedule.
리턴 void