Akka.Routing.RoundRobinRoutingLogic.RoundRobinRoutingLogic C# (CSharp) Method

RoundRobinRoutingLogic() public method

Initializes a new instance of the RoundRobinRoutingLogic class.
public RoundRobinRoutingLogic ( int next ) : System.Collections.Generic
next int The index to use when starting the selection process. Note that it will start at (next + 1).
return System.Collections.Generic
        public RoundRobinRoutingLogic(int next)
        {
            _next = next;
        }

Same methods

RoundRobinRoutingLogic::RoundRobinRoutingLogic ( ) : System.Collections.Generic
RoundRobinRoutingLogic