Click or drag to resize
Akka.NETRoutingLogicSelect Method
Picks a Routee to receive the message.
Note Note
Normally it picks one of the passed routees, but it is up to the implementation to return whatever Routee to use for sending a specific message.

Namespace:  Akka.Routing
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract Routee Select(
	Object message,
	Routee[] routees
)

Parameters

message
Type: SystemObject
The message that is being routed
routees
Type: Akka.RoutingRoutee
A collection of routees to choose from when receiving the message.

Return Value

Type: Routee
A Routee that receives the message.
See Also