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

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

Initializes a new instance of the TailChoppingRoutee class.
public TailChoppingRoutee ( Routee routees, System.TimeSpan within, System.TimeSpan interval, IScheduler scheduler ) : 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.
interval System.TimeSpan The duration after which the next routee will be picked.
scheduler IScheduler The used to force deadlines.
Результат System
        public TailChoppingRoutee(Routee[] routees, TimeSpan within, TimeSpan interval, IScheduler scheduler)
        {
            _routees = routees;
            _within = within;
            _interval = interval;
            _scheduler = scheduler;
        }
TailChoppingRoutee