Akka.Routing.ScatterGatherFirstCompletedGroup.WithDispatcher C# (CSharp) Метод

WithDispatcher() публичный Метод

Creates a new ScatterGatherFirstCompletedGroup router with a given dispatcher id. This method is immutable and returns a new instance of the router.
public WithDispatcher ( string dispatcher ) : Akka.Routing.Group
dispatcher string The dispatcher id used to configure the new router.
Результат Akka.Routing.Group
        public override Group WithDispatcher(string dispatcher)
        {
            return new ScatterGatherFirstCompletedGroup(Within, Paths){ RouterDispatcher = dispatcher};
        }
    }