Skip to content

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.

C#
public static class StreamStatuses

Inheritance 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).

C#
public const string Disabled = "disabled";

Field Value

System.String

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).

C#
public const string Enabled = "enabled";

Field Value

System.String

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).

C#
public const string Paused = "paused";

Field Value

System.String