C# Class 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" } }
Inheritance: MessageDispatcher
Mostra file Open project: rogeralsing/akka.net Class Usage Examples

Public Methods

Method Description
Schedule ( System.Action run ) : void

Private Methods

Method Description
ForkJoinDispatcher ( MessageDispatcherConfigurator configurator, DedicatedThreadPoolSettings settings ) : System

Method Details

Schedule() public method

public Schedule ( System.Action run ) : void
run System.Action
return void