C# 클래스 Akka.Dispatch.ForkJoinDispatcher

ForkJoinDispatcher - custom multi-threaded dispatcher that runs on top of a Helios.Concurrency.DedicatedThreadPool, designed to be used for mission-critical actors that can't afford ThreadPool starvation. Relevant configuration options: my-forkjoin-dispatcher{ type = ForkJoinDispatcher throughput = 100 dedicated-thread-pool{ #settings for Helios.DedicatedThreadPool thread-count = 3 #number of threads #deadlock-timeout = 3s #optional timeout for deadlock detection threadtype = background #values can be "background" or "foreground" } }
상속: MessageDispatcher
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 메소드들

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

비공개 메소드들

메소드 설명
ForkJoinDispatcher ( MessageDispatcherConfigurator configurator, DedicatedThreadPoolSettings settings ) : System

메소드 상세

Schedule() 공개 메소드

public Schedule ( System.Action run ) : void
run System.Action
리턴 void