Home > @rainway/web > PeerState
PeerState enum
Signature:
export declare enum PeerState
Enumeration Members
Member | Value | Description |
---|---|---|
Connected | 2 | Peer is currently connected and messages should be sent/received without issues |
Connecting | 1 | Attempting to form a new connection |
Disconnected | 3 | Peer is currently disconnected which indicates an issue with the underlying connection. Reconnection attempts will automatically occur until a Connected or a Failed state is reached. |
Failed | 4 | Connection to this peer will no longer attempt to be re-established. |
New | 0 | A newly created peer |