C# Class Akka.Routing.RandomLogic

This class contains logic used by a Router to route a message to a random Routee.
Inheritance: RoutingLogic
Datei anzeigen Open project: rogeralsing/akka.net Class Usage Examples

Public Methods

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

Picks a random Routee to receive the message.

Method Details

Select() public method

Picks a random Routee to receive the message.
public Select ( object message, Routee routees ) : Routee
message object The message that is being routed.
routees Routee A collection of routees to randomly choose from when receiving the .
return Routee