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

WithDispatcher() 공개 메소드

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