You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiRecorderErrors.js 725B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. var JitsiRecorderErrors = {
  6. /**
  7. * Indicates that the recorder is currently unavailable.
  8. */
  9. RECORDER_UNAVAILABLE: "recorder.unavailable",
  10. /**
  11. * Indicates that all available recorders are currently busy.
  12. */
  13. RECORDER_BUSY: "recorder.busy",
  14. /**
  15. * Indicates that the authentication token is missing.
  16. */
  17. NO_TOKEN: "recorder.noToken",
  18. /**
  19. * Indicates that a state change failed.
  20. */
  21. STATE_CHANGE_FAILED: "recorder.stateChangeFailed",
  22. /**
  23. * Indicates an invalid state.
  24. */
  25. INVALID_STATE: "recorder.invalidState"
  26. };
  27. module.exports = JitsiRecorderErrors;