Table of Contents

Enum LiveSessionState

Namespace
DatabentoDotNet.Extensions.Hosting
Assembly
DatabentoDotNet.Extensions.Hosting.dll

Where a live session is in its lifecycle. Read by the health check.

public enum LiveSessionState

Fields

Faulted = 5

The session failed. LiveSessionRunner.Fault says how.

NotStarted = 0

Constructed; StartSessionAsync has not been called.

Reconnecting = 3

The connection dropped and the backoff is running.

Running = 2

Started, and reading records.

Starting = 1

Connecting, authenticating, subscribing, or starting.

Stopped = 4

The stream ended or the session was cancelled. Not a failure.