RealtimeObserver

RealtimeObserver lets one listen to real time events such a volume, signal strength, or attendee changes.

Note: all callbacks will be called on main thread.

Inheritors

Functions

Link copied to clipboard
abstract fun onAttendeesDropped(attendeeInfo: Array<AttendeeInfo>)

Handles attendee(s) being dropped due to network.

Link copied to clipboard
abstract fun onAttendeesJoined(attendeeInfo: Array<AttendeeInfo>)

Handles attendee(s) being added.

Link copied to clipboard
abstract fun onAttendeesLeft(attendeeInfo: Array<AttendeeInfo>)

Handles attendee(s) being removed.

Link copied to clipboard
abstract fun onAttendeesMuted(attendeeInfo: Array<AttendeeInfo>)

Handles attendee(s) whose VolumeLevel has changed to muted.

Link copied to clipboard
abstract fun onAttendeesUnmuted(attendeeInfo: Array<AttendeeInfo>)

Handles attendee(s) whose VolumeLevel has changed from muted.

Link copied to clipboard
abstract fun onSignalStrengthChanged(signalUpdates: Array<SignalUpdate>)

Handles signal strength changes for attendees whose SignalStrength has changed.

Link copied to clipboard
abstract fun onVolumeChanged(volumeUpdates: Array<VolumeUpdate>)

Handles volume changes for attendees whose VolumeLevel has changed.