C# Class Akka.Routing.RoutingLogic

This class contains logic used by a Router to route messages to one or more actors. These actors are known in the system as a Routee.
Exibir arquivo Open project: rogeralsing/akka.net Class Usage Examples

Public Methods

Method Description
Select ( object message, Routee routees ) : Routee

Picks a Routee to receive the message. 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.

Method Details

Select() public abstract method

Picks a Routee to receive the message. 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.
public abstract Select ( object message, Routee routees ) : Routee
message object The message that is being routed
routees Routee A collection of routees to choose from when receiving the .
return Routee