Akka.Routing.TailChoppingPool.WithResizer C# (CSharp) 메소드

WithResizer() 공개 메소드

Creates a new TailChoppingPool router with a given Resizer. This method is immutable and returns a new instance of the router.
public WithResizer ( Akka.Routing.Resizer resizer ) : Akka.Routing.Pool
resizer Akka.Routing.Resizer The used to configure the new router.
리턴 Akka.Routing.Pool
        public override Pool WithResizer(Resizer resizer)
        {
            return new TailChoppingPool(NrOfInstances, resizer, SupervisorStrategy, RouterDispatcher, _within, _interval, UsePoolDispatcher);
        }