AccidentalFish.ApplicationSupport.Core.Policies.Implementation.AsynchronousIntervalTimer.AsynchronousIntervalTimer C# (CSharp) Метод

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

public AsynchronousIntervalTimer ( IAsynchronousDelay taskDelay, System.TimeSpan interval, bool delayOnExecute ) : System
taskDelay IAsynchronousDelay
interval System.TimeSpan
delayOnExecute bool
Результат System
        public AsynchronousIntervalTimer(IAsynchronousDelay taskDelay, TimeSpan interval, bool delayOnExecute)
        {
            _taskDelay = taskDelay;
            _interval = interval;
            _delayOnExecute = delayOnExecute;
        }