Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

JitsiConnectionEvents.js 788B

12345678910111213141516171819202122232425
  1. /**
  2. * Enumeration with the events for the connection.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConnnectionEvents = {
  6. /**
  7. * Indicates that the connection has been failed for some reason.
  8. */
  9. CONNECTION_FAILED: "connection.connecionFailed",
  10. /**
  11. * Indicates that the connection has been established.
  12. */
  13. CONNECTION_ESTABLISHED: "connection.connecionEstablished",
  14. /**
  15. * Indicates that the connection has been disconnected.
  16. */
  17. CONNECTION_DISCONNECTED: "connection.connecionDisconnected",
  18. /**
  19. * Indicates that the perfomed action cannot be executed because the
  20. * connection is not in the correct state(connected, disconnected, etc.)
  21. */
  22. WRONG_STATE: "connection.wrongState"
  23. };
  24. module.exports = JitsiConnnectionEvents;