RecordingService

The RecordingService is responsible for recording conferences. For more information about the recording function, see the Recording Conferences document.

Methods

current

current(): Promise<null | Recording>

Returns information about the current recording.

Returns

Promise<null | Recording>


start

start(): Promise<void>

Starts recording a conference.

Returns

Promise<void>


stop

stop(): Promise<void>

Stops recording a conference.

Returns

Promise<void>


Event handlers

onRecordingStatusUpdated

onRecordingStatusUpdated(handler): UnsubscribeFunction

Adds a listener to the invitation received event.

Parameters

NameTypeDescription
handler(data: RecordingStatusUpdatedEventType) => voidAn event callback function.

Returns

UnsubscribeFunction

A function that unsubscribes from event listeners.