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

Select() public method

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 .
return Routee
        public override Routee Select(object message, Routee[] routees)
        {
            if(routees.IsNullOrEmpty())
            {
                return Routee.NoRoutee;
            }
            return new TailChoppingRoutee(routees, _within, _interval, _scheduler);
        }
    }
TailChoppingRoutingLogic