C# 클래스 SimpleConcurrency.Actors.FairThreadPoolScheduler

A scheduler using a provided FairThreadPool
상속: IScheduler
파일 보기 프로젝트 열기: sdanzan/SimpleConcurrency

공개 메소드들

메소드 설명
FairThreadPoolScheduler ( FairThreadPool pool ) : System

Standard constructor.

Schedule ( System.Action action ) : void

Queue the provided Action into the underlying FairThreadPool.

메소드 상세

FairThreadPoolScheduler() 공개 메소드

Standard constructor.
public FairThreadPoolScheduler ( FairThreadPool pool ) : System
pool FairThreadPool The FairThreadPool to use.
리턴 System

Schedule() 공개 메소드

Queue the provided Action into the underlying FairThreadPool.
public Schedule ( System.Action action ) : void
action System.Action Job to schedule.
리턴 void