Disconnecting Video Service

Disconnecting

Invoking the disconnect() method will remove the user from any channel that they are currently participating in. All connections to the audio service will also be terminated.

aloVideo.disconnect();

Event

Description

onDisconnect

Once disconnected, either intentionally or due to an error, the onDisconnect event will be dispatched.

Example onDisconnect Event Payloads

// when disconnect() is called
{
 detail: {state: "DISCONNECTED"}
}

// When disconnected unexpectedly
{
 detail: {
  state: "ERROR",
  message: "Lost connection to the server",
 }
}

Last updated