1234567891011121314151617181920212223242526272829303132 |
- /**
- * The events for the connection.
- */
-
- /**
- * Indicates that the connection has been disconnected. The event provides
- * the following parameters to its listeners:
- *
- * @param msg {string} a message associated with the disconnect such as the
- * last (known) error message
- */
- export const CONNECTION_DISCONNECTED = "connection.connectionDisconnected";
- /**
- * Indicates that the connection has been established. The event provides
- * the following parameters to its listeners:
- *
- * @param id {string} the ID of the local endpoint/participant/peer (within
- * the context of the established connection)
- */
- export const CONNECTION_ESTABLISHED = "connection.connectionEstablished";
- /**
- * Indicates that the connection has been failed for some reason. The event
- * provides the following parameters to its listeners:
- *
- * @param err {string} the error (message) associated with the failure
- */
- export const CONNECTION_FAILED = "connection.connectionFailed";
- /**
- * Indicates that the performed action cannot be executed because the
- * connection is not in the correct state(connected, disconnected, etc.)
- */
- export const WRONG_STATE = "connection.wrongState";
|