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.Dispatch.MessageDispatcherConfigurator
The configurator used.
id
Type: System.String
The id of this dispatcher.
throughput
Type: System.Int32
The throughput of this dispatcher.
throughputDeadlineTime
Type: System.Nullable<Int64>
The deadline for completing N (where N = throughput) operations on the mailbox..
executorServiceFactory
Type: Akka.Dispatch.ExecutorServiceFactory
The factory for producing the executor who will do the work.
shutdownTimeout
Type: System.TimeSpan
The graceful stop timeout period.
See Also