Click or drag to resize
Akka.NETDispatcher Constructor
Used to create a default Dispatcher

Namespace:  Akka.Dispatch
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Dispatcher(
	MessageDispatcherConfigurator configurator,
	string id,
	int throughput,
	Nullable<long> throughputDeadlineTime,
	ExecutorServiceFactory executorServiceFactory,
	TimeSpan shutdownTimeout
)

Parameters

configurator
Type: Akka.DispatchMessageDispatcherConfigurator
The configurator used.
id
Type: SystemString
The id of this dispatcher.
throughput
Type: SystemInt32
The throughput of this dispatcher.
throughputDeadlineTime
Type: SystemNullableInt64
The deadline for completing N (where N = throughput) operations on the mailbox..
executorServiceFactory
Type: Akka.DispatchExecutorServiceFactory
The factory for producing the executor who will do the work.
shutdownTimeout
Type: SystemTimeSpan
The graceful stop timeout period.
See Also