AccidentalFish.ApplicationSupport.Core.Policies.Implementation.TimerFactory.CreateAsynchronousIntervalTimer C# (CSharp) 메소드

CreateAsynchronousIntervalTimer() 공개 메소드

public CreateAsynchronousIntervalTimer ( System.TimeSpan interval, bool delayOnExecute = false ) : IAsynchronousIntervalTimer
interval System.TimeSpan
delayOnExecute bool
리턴 IAsynchronousIntervalTimer
        public IAsynchronousIntervalTimer CreateAsynchronousIntervalTimer(TimeSpan interval, bool delayOnExecute = false)
        {
            return new AsynchronousIntervalTimer(_taskDelay, interval, delayOnExecute);
        }