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

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

Initializes a new instance of the ScatterGatherFirstCompletedRoutees class.
public ScatterGatherFirstCompletedRoutees ( Routee routees, System.TimeSpan within ) : System
routees Routee The list of routees that the router uses to send messages.
within System.TimeSpan The time within which at least one response is expected.
Результат System
        public ScatterGatherFirstCompletedRoutees(Routee[] routees, TimeSpan within)
        {
            _routees = routees;
            _within = within;
        }
ScatterGatherFirstCompletedRoutees