Typed Event Emitter class which can act as a Base Model for all our model and communication events. This makes it much easier for us to distinguish between events, as we now need to properly type this, so that our events are not stringly-based and prone to silly typos.

Type parameters:

  • Events - List of all events emitted by this TypedEventEmitter. Normally an enum type.
  • Arguments - A ListenerMap type providing mappings from event names to listener types.
  • SuperclassArguments - TODO: not really sure. Alternative listener mappings, I think? But only honoured for .emit?

Hierarchy (view full)

Constructors

Properties

audioInput?: string
audioSettings?: AudioSettings
client: MatrixClient
getMediaStreamPromise?: Promise<MediaStream>
localUserMediaStream?: MediaStream
screensharingStreams: MediaStream[] = []
userMediaStreams: MediaStream[] = []
videoInput?: string

Methods

  • Parameters

    • audio: boolean
    • video: boolean

    Returns MediaStreamConstraints

  • Removes all listeners, or those of the specified event.

    It is bad practice to remove listeners added elsewhere in the code, particularly when the EventEmitter instance was created by some other component or module (e.g. sockets or file streams).

    Parameters

    Returns this

    a reference to the EventEmitter, so that calls can be chained.

  • Parameters

    • audioInput: string
    • videoInput: string

    Returns void

  • Set an audio input device to use for MatrixCalls

    Parameters

    • deviceId: string

      the identifier for the device undefined treated as unset

    Returns Promise<void>

  • Set media input devices to use for MatrixCalls

    Parameters

    • audioInput: string

      the identifier for the audio device

    • videoInput: string

      the identifier for the video device undefined treated as unset

    Returns Promise<void>

  • Set a video input device to use for MatrixCalls

    Parameters

    • deviceId: string

      the identifier for the device undefined treated as unset

    Returns Promise<void>

Generated using TypeDoc