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;
        }