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

Select() public method

Picks all the Routee">routees in routees to receive the
public Select ( object message, Routee routees ) : Routee
message object The message that is being routed.
routees Routee A collection of routees that receives the .
return Routee
        public override Routee Select(object message, Routee[] routees)
        {
            if (routees == null || !routees.Any())
                return Routee.NoRoutee;
            return new SeveralRoutees(routees);
        }
    }
BroadcastRoutingLogic