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

MediaDirection.js 545B

123456789101112131415161718192021222324252627
  1. /**
  2. * Enumeration of the media direction types.
  3. * @type {{INACTIVE: string, RECVONLY: string, SENDONLY: string, SENDRECV: string}}
  4. */
  5. const MediaDirection = {
  6. /**
  7. * Media is send and receive is suspended.
  8. */
  9. INACTIVE: 'inactive',
  10. /**
  11. * Media is only received from remote peer.
  12. */
  13. RECVONLY: 'recvonly',
  14. /**
  15. * Media is only sent to the remote peer.
  16. */
  17. SENDONLY: 'sendonly',
  18. /**
  19. * Media is sent and received.
  20. */
  21. SENDRECV: 'sendrecv'
  22. };
  23. module.exports = MediaDirection;