resumeAllStreams

Resumes all incoming (remote) streams of the specified kind that were previously paused.

This is the counterpart to pauseAllStreams. It instructs the SFU server to resume forwarding the specified media type to this participant. Local streams (your own mic/webcam) are not affected.

This method must be called after the meeting has been joined. If called before joining, an onError callback is fired with error code 3001.

Events:

Code Example:


// Resume all incoming video streams
meeting.resumeAllStreams("video")

// Resume all incoming streams of every kind
meeting.resumeAllStreams()

Parameters

kind

the kind of streams to resume: "audio", "video", "share", or "all" to resume every kind

See also


This method can be used to resume all incoming streams of all kinds (audio, video, and share).

Code Example:


meeting.resumeAllStreams()