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

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

public CreateAsynchronousRegularTimer ( System.TimeSpan interval, bool delayOnExecute = false ) : IAsynchronousRegularTimer
interval System.TimeSpan
delayOnExecute bool
Результат IAsynchronousRegularTimer
        public IAsynchronousRegularTimer CreateAsynchronousRegularTimer(TimeSpan interval, bool delayOnExecute = false)
        {
            return new AsynchronousRegularTimer(_timerThreadPoolExecuter, _taskDelay, interval, delayOnExecute);
        }
    }