Channel

Overview

RemoteMonster provides resources shared by users during broadcasting and communication under the name channel. This channel is created the first time you create it, provides each unique Id, and gets or retrieves a list of them to connect to a specific channel. In addition, you can assign a name to your channel in order to make it easier to use.

Please refer to the following for the overall flow and corresponding Callbacks.

Livecast

Here is how to get a list of broadcasts on the air. It is commonly used in UIs to find broadcasts to enter from the list.

const remonCast = new Remon()
const casts = await remonCast.fetchCasts()    // Return Promise

Communication

Here's how to get a list of calls from your communications. It is used in situations such as a random chat and is not generally used.

const remonCall = new Remon()
const calls = await remonCall
  .fetchCasts()                             // Return Promise
  .filter(item => item.status === "WAIT")

Last updated