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.

ConnectionQualityEvents.ts 555B

123456789101112131415161718
  1. export enum ConnectionQualityEvents {
  2. /**
  3. * Indicates that the local connection statistics were updated.
  4. */
  5. LOCAL_STATS_UPDATED = 'cq.local_stats_updated',
  6. /**
  7. * Indicates that the connection statistics for a particular remote participant
  8. * were updated.
  9. */
  10. REMOTE_STATS_UPDATED = 'cq.remote_stats_updated'
  11. }
  12. // exported for backward compatibility
  13. export const LOCAL_STATS_UPDATED = ConnectionQualityEvents.LOCAL_STATS_UPDATED;
  14. export const REMOTE_STATS_UPDATED = ConnectionQualityEvents.REMOTE_STATS_UPDATED;