Click or drag to resize
TailChoppingPool Constructor (Int32, Resizer, SupervisorStrategy, String, TimeSpan, TimeSpan, Boolean)
Creates an instance of the TailChoppingPool.

Namespace: Akka.Routing
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public TailChoppingPool(
	int nrOfInstances,
	Resizer resizer,
	SupervisorStrategy supervisorStrategy,
	string routerDispatcher,
	TimeSpan within,
	TimeSpan interval,
	bool usePoolDispatcher = false
)

Parameters

nrOfInstances
Type: SystemInt32
The initial number of routees in the pool.
resizer
Type: Akka.RoutingResizer
The resizer to use with this instance.
supervisorStrategy
Type: Akka.ActorSupervisorStrategy
The supervision strategy to use with this pool.
routerDispatcher
Type: SystemString
The router dispatcher to use with this instance.
within
Type: SystemTimeSpan
The amount of time to wait for a response.
interval
Type: SystemTimeSpan
The interval to wait before sending to the next routee.
usePoolDispatcher (Optional)
Type: SystemBoolean
Whether or not to use the pool dispatcher.
See Also