Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.Select C# (CSharp) Method

Select() public method

Picks all the provided routees 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 choose from when receiving the .
return Routee
        public override Routee Select(object message, Routee[] routees)
        {
            if (routees == null || routees.Length == 0)
            {
                return Routee.NoRoutee;
            }
            return new ScatterGatherFirstCompletedRoutees(routees,_within);
        }
    }
ScatterGatherFirstCompletedRoutingLogic