Table of Contents

Enum ConnectionStateValue

Namespace
RDCore.SDK.Client.Connection
Assembly
RDCore.SDK.dll

The lifecycle state of a ChildConnection to a supervised child process.

public enum ConnectionStateValue

Fields

Connecting = 2

The process is alive; the transport is connecting.

Exited = 6

The child process has exited. Terminal.

Faulted = 7

The connection failed unexpectedly (crash, connect timeout, handshake failure).

Initializing = 3

The transport is connected; the LSP initialization handshake is running.

NotStarted = 0

Nothing has been started yet.

Ready = 4

Initialized; the connection is usable for requests and notifications.

ShuttingDown = 5

A graceful shutdown handshake is in progress.

Spawning = 1

The child process is being started.