Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.FromSurrogate C# (CSharp) Method

FromSurrogate() public method

Creates a TailChoppingPool 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 TailChoppingPool(NrOfInstances, Resizer, SupervisorStrategy, RouterDispatcher, Within, Interval, UsePoolDispatcher);
            }
TailChoppingPool.TailChoppingPoolSurrogate