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

Select() public méthode

Picks all of 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 used when receiving the .
Résultat Routee
        public override Routee Select(object message, Routee[] routees)
        {
            if(routees.IsNullOrEmpty())
            {
                return Routee.NoRoutee;
            }
            return new TailChoppingRoutee(routees, _within, _interval, _scheduler);
        }
    }
TailChoppingRoutingLogic