A MatrixRTCSession manages the membership & properties of a MatrixRTC session. This class doesn't deal with media at all, just membership & properties of a session.

Hierarchy (View Summary)

Properties

memberships: CallMembership[]
room: Room
statistics: {
    counters: {
        roomEventEncryptionKeysReceived: number;
        roomEventEncryptionKeysSent: number;
    };
    totals: { roomEventEncryptionKeysReceivedTotalAge: number };
} = ...

The statistics for this session.

Accessors

  • get callId(): undefined | string
  • The callId (sessionId) of the call.

    It can be undefined since the callId is only known once the first membership joins. The callId is the property that, per definition, groups memberships into one call.

    Returns undefined | string

Methods

  • A map of keys used to encrypt and decrypt (we are using a symmetric cipher) given participant's media. This also includes our own key

    Returns IterableIterator<[string, Uint8Array<ArrayBufferLike>[]], any, any>

    This will be made private in a future release.

  • Get the known encryption keys for a given participant device.

    Parameters

    • userId: string

      the user ID of the participant

    • deviceId: string

      the device ID of the participant

    Returns undefined | Uint8Array<ArrayBufferLike>[]

    The encryption keys for the given participant, or undefined if they are not known.

    This will be made private in a future release.

  • Announces this user and device as joined to the MatrixRTC session, and continues to update the membership event to keep it valid until leaveRoomSession() is called This will not subscribe to updates: remember to call subscribe() separately if desired. This method will return immediately and the session will be joined in the background.

    Parameters

    • fociPreferred: Focus[]

      The list of preferred foci this member proposes to use/knows/has access to. For the livekit case this is a list of foci generated from the homeserver well-known, the current rtc session, or optionally other room members homeserver well known.

    • OptionalfociActive: Focus

      The object representing the active focus. (This depends on the focus type.)

    • OptionaljoinConfig: JoinSessionConfig

      Additional configuration for the joined session.

    Returns void

  • Announces this user and device as having left the MatrixRTC session and stops scheduled updates. This will not unsubscribe from updates: remember to call unsubscribe() separately if desired. The membership update required to leave the session will retry if it fails. Without network connection the promise will never resolve. A timeout can be provided so that there is a guarantee for the promise to resolve.

    Parameters

    • timeout: undefined | number = undefined

    Returns Promise<boolean>

    Whether the membership update was attempted and did not time out.

  • Process m.call.encryption_keys events to track the encryption keys for call participants. This should be called each time the relevant event is received from a room timeline. If the event is malformed then it will be logged and ignored.

    Parameters

    Returns void

  • Examines the latest call memberships and handles any encryption key sending or rotation that is needed.

    This function should be called when the room members or call memberships might have changed.

    Returns void

  • Re-emit an EncryptionKeyChanged event for each tracked encryption key. This can be used to export the keys.

    Returns void