Class IntervalTimerOptions
Timer options for setting up interval callback timers.
public sealed record IntervalTimerOptions : TimerOptions, IEquatable<TimerOptions>, IEquatable<IntervalTimerOptions>
- Inheritance
-
IntervalTimerOptions
- Implements
- Inherited Members
Constructors
Properties
- ResetIntervalBeforeCallback
For a repeating registration, when
false(the default), the next interval is not armed until the current callback completes. When set totrue, the next interval is armed before the user callback runs, allowing the next tick to fire while the current callback may still be running.