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 = 2The process is alive; the transport is connecting.
Exited = 6The child process has exited. Terminal.
Faulted = 7The connection failed unexpectedly (crash, connect timeout, handshake failure).
Initializing = 3The transport is connected; the LSP initialization handshake is running.
NotStarted = 0Nothing has been started yet.
Ready = 4Initialized; the connection is usable for requests and notifications.
ShuttingDown = 5A graceful shutdown handshake is in progress.
Spawning = 1The child process is being started.