forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJitsiConnectionEvents.js
36 lines (35 loc) · 1.31 KB
/
JitsiConnectionEvents.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Enumeration with the events for the connection.
* @type {{string: string}}
*/
var JitsiConnnectionEvents = {
/**
* Indicates that the connection has been failed for some reason. The event
* proivdes the following parameters to its listeners:
*
* @param err {string} the error (message) associated with the failure
*/
CONNECTION_FAILED: "connection.connectionFailed",
/**
* 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)
*/
CONNECTION_ESTABLISHED: "connection.connectionEstablished",
/**
* 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
*/
CONNECTION_DISCONNECTED: "connection.connectionDisconnected",
/**
* Indicates that the perfomed action cannot be executed because the
* connection is not in the correct state(connected, disconnected, etc.)
*/
WRONG_STATE: "connection.wrongState"
};
module.exports = JitsiConnnectionEvents;