Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

constants.ts 957B

1234567891011121314151617
  1. /**
  2. * The name of the {@code JitsiConnection} property which identifies the {@code JitsiConference} currently associated
  3. * with it.
  4. *
  5. * FIXME: This is a hack. It was introduced to solve the following case: if a user presses hangup quickly, they may
  6. * "leave the conference" before the actual conference was ever created. While we might have a connection in place,
  7. * there is no conference which can be left, thus no CONFERENCE_LEFT action will ever be fired.
  8. *
  9. * This is problematic because the external API module used to send events to the native SDK won't know what to send.
  10. * So, in order to detect this situation we are attaching the conference object to the connection which runs it.
  11. */
  12. export const JITSI_CONNECTION_CONFERENCE_KEY = Symbol('conference');
  13. /**
  14. * The name of the {@code JitsiConnection} property which identifies the location URL where the connection will be made.
  15. */
  16. export const JITSI_CONNECTION_URL_KEY = Symbol('url');