Table of Contents

Struct Reaction

Namespace
Pamoja.Profile
Assembly
Pamoja.Profile.dll

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

Actuator bool?

The setting the output should take, or null when the profile observes rather than controls.

Alert Alert?

The alert the reading raised, or null if 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; }

Property Value

Alert?