StreamStatuses Class
The allowable stream status values (SSF 1.0 Section 8.1.2.1). A standalone registry rather than a nest under StreamStatus, because the Stream Updated Event carries the same values in its own payload.
public static class StreamStatusesInheritance System.Object → StreamStatuses
Fields
StreamStatuses.Disabled Field
The transmitter must not transmit and holds nothing for later (SSF 1.0 Section 8.1.2.1).
public const string Disabled = "disabled";Field Value
StreamStatuses.Enabled Field
The transmitter must transmit events over the stream, according to its configured delivery method (SSF 1.0 Section 8.1.2.1).
public const string Enabled = "enabled";Field Value
StreamStatuses.Paused Field
The transmitter must not transmit and should hold what it would have sent, releasing it when the stream is enabled again - either in generation order, or only the latest events whose predecessors for the same subject principal they cancel or outdate (SSF 1.0 Section 8.1.2.1).
public const string Paused = "paused";