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

WithResizer() 공개 메소드

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