Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

JitsiRecorderErrors.js 727B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. const 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;