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