AudioChannel

The current channel object defines the audio channel that the user is currently participating in.

Constructor

const channel = new AudioChannel(id [, options])

ChannelOptions

Example AudioChannel Instantiation

const currentChannel = new AudioChannel(
  'Unique id for the channel',
  {
    isFullDuplex: false
  }
}

Properties

Methods

getParticipants()

Once the user is connected to the channel, this methos returns the current list of participants in the channel.

Last updated