AccidentalFish.ApplicationSupport.Core.Policies.Implementation.TimerFactory.CreateAsynchronousIntervalTimer C# (CSharp) Méthode

CreateAsynchronousIntervalTimer() public méthode

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