Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.Select C# (CSharp) Méthode

Select() public méthode

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 .
Résultat Routee
        public override Routee Select(object message, Routee[] routees)
        {
            if (routees == null || routees.Length == 0)
            {
                return Routee.NoRoutee;
            }
            return new ScatterGatherFirstCompletedRoutees(routees,_within);
        }
    }
ScatterGatherFirstCompletedRoutingLogic