Class TimerMetadata
- Namespace
- Scaleout.Streaming.DigitalTwin.Core
- Assembly
- ScaleOut.Streaming.DigitalTwin.Core.dll
Used by the DigitalTwinBase class to store information about a timer associated with a Digital Twin instance.
[Serializable]
public sealed class TimerMetadata
- Inheritance
-
TimerMetadata
- Inherited Members
Properties
Id
The timer Id.
public int Id { get; set; }
Property Value
Interval
The timer interval.
public TimeSpan Interval { get; set; }
Property Value
TimerHandler
The timer handler. Only assign a public static method or a class instance method to this property.
public TimerHandler TimerHandler { get; set; }
Property Value
Type
The timer type.
public TimerType Type { get; set; }