Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.FromSurrogate C# (CSharp) Method

FromSurrogate() public method

Creates a RoundRobinPool encapsulated by this surrogate.
public FromSurrogate ( ActorSystem system ) : ISurrogated
system ActorSystem The actor system that owns this router.
return ISurrogated
            public ISurrogated FromSurrogate(ActorSystem system)
            {
                return new RoundRobinPool(NrOfInstances, Resizer, SupervisorStrategy, RouterDispatcher, UsePoolDispatcher);
            }
RoundRobinPool.RoundRobinPoolSurrogate