AccidentalFish.ApplicationSupport.Core.Policies.Implementation.TimerFactory.CreateAsynchronousRegularTimer C# (CSharp) Method

CreateAsynchronousRegularTimer() public method

public CreateAsynchronousRegularTimer ( System.TimeSpan interval, bool delayOnExecute = false ) : IAsynchronousRegularTimer
interval System.TimeSpan
delayOnExecute bool
return IAsynchronousRegularTimer
        public IAsynchronousRegularTimer CreateAsynchronousRegularTimer(TimeSpan interval, bool delayOnExecute = false)
        {
            return new AsynchronousRegularTimer(_timerThreadPoolExecuter, _taskDelay, interval, delayOnExecute);
        }
    }