Enum TimerType
- Namespace
- Scaleout.Modules.DigitalTwin.Abstractions
- Assembly
- Scaleout.Modules.DigitalTwin.Abstractions.dll
Defines the type of timer that can be created by StartTimerAsync(string, TimeSpan, TimerType, TimerAsyncHandler<TDigitalTwin>).
public enum TimerType
Fields
OneTime = 1The timer is fired once after the specified time interval is elapsed.
Recurring = 0The timer is fired periodically with the specified interval until the StopTimerAsync(string) is called.