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.

JingleSessionState.ts 696B

12345678910111213141516171819202122232425
  1. export enum JingleSessionState {
  2. /**
  3. * The active Jingle session state as defined in XEP-0166
  4. * (after 'session-invite'/'session-accept').
  5. */
  6. ACTIVE = 'active',
  7. /**
  8. * The ended Jingle session state as defined in XEP-0166
  9. * (after 'session-terminate').
  10. */
  11. ENDED = 'ended',
  12. /**
  13. * The pending Jingle session state which means the session as defined in
  14. * XEP-0166(before 'session-invite/session-accept' took place).
  15. */
  16. PENDING = 'pending'
  17. }
  18. // exported for backward compatibility
  19. export const PENDING = JingleSessionState.PENDING;
  20. export const ACTIVE = JingleSessionState.ACTIVE;
  21. export const ENDED = JingleSessionState.ENDED;