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

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

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