Enum TimerType
- Namespace
- Scaleout.Streaming.DigitalTwin.Core
- Assembly
- ScaleOut.Streaming.DigitalTwin.Core.dll
Defines the type of timer that can be created by StartTimer(string, TimeSpan, TimerType, TimerHandler).
public enum TimerType
Fields
OneTime = 1
The timer is fired once after the specified time interval is elapsed.
Recurring = 0
The timer is fired periodically with the specified interval until the StopTimer(string) is called.