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.

E2ePingEvents.ts 281B

12345678910
  1. export enum E2ePingEvents {
  2. /**
  3. * Indicates that the end-to-end round-trip-time for a participant has changed.
  4. */
  5. E2E_RTT_CHANGED = 'e2eping.e2e_rtt_changed'
  6. }
  7. // exported for backward compatibility
  8. export const E2E_RTT_CHANGED = E2ePingEvents.E2E_RTT_CHANGED;