Struct Reaction
What a controller decided about one reading.
public readonly record struct Reaction : IEquatable<Reaction>
- Implements
- Inherited Members
Constructors
Reaction(bool?, Alert?)
What a controller decided about one reading.
public Reaction(bool? Actuator, Alert? Alert)
Parameters
Actuatorbool?The setting the output should take, or
nullwhen the profile observes rather than controls.AlertAlert?The alert the reading raised, or
nullif it crossed nothing.
Properties
Actuator
The setting the output should take, or null when the profile observes
rather than controls.
public bool? Actuator { get; init; }
Property Value
- bool?
Alert
The alert the reading raised, or null if it crossed nothing.
public Alert? Alert { get; init; }