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

AsynchronousIntervalTimer() public method

public AsynchronousIntervalTimer ( IAsynchronousDelay taskDelay, System.TimeSpan interval, bool delayOnExecute ) : System
taskDelay IAsynchronousDelay
interval System.TimeSpan
delayOnExecute bool
return System
        public AsynchronousIntervalTimer(IAsynchronousDelay taskDelay, TimeSpan interval, bool delayOnExecute)
        {
            _taskDelay = taskDelay;
            _interval = interval;
            _delayOnExecute = delayOnExecute;
        }