Conferences
The conference service.
This class allows performing some conference related actions like creating a new one or checking if one specific conference is still pending. It also allows adding a listener to receive the incoming conferences (@see ConferencesListener).
Functions
Link copied to clipboard
Adds a listener to receive new conference events.
Link copied to clipboard
fun createConference(onCompletion: (Either<Conference, ConferenceError>) -> Unit)
Content copied to clipboard
Creates a new conference.
Link copied to clipboard
fun isConferenceStillPending(invitationId: String, onCompletion: (Either<Boolean, ConferenceError>) -> Unit)
Content copied to clipboard
Checks if a conference associated with a specific invitationId is still pending.
Link copied to clipboard
Removes the specified listener.