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.

MediaDirection.ts 435B

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