Conferences

class 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
fun addListener(listener: ConferencesListener)

Adds a listener to receive new conference events.

Link copied to clipboard
fun createConference(onCompletion: (Either<Conference, ConferenceError>) -> Unit)

Creates a new conference.

Link copied to clipboard
fun isConferenceStillPending(invitationId: String, onCompletion: (Either<Boolean, ConferenceError>) -> Unit)

Checks if a conference associated with a specific invitationId is still pending.

Link copied to clipboard
fun removeListener(listener: ConferencesListener)

Removes the specified listener.

Properties

Link copied to clipboard
val rx: ConferencesRx

Access to the reactive API of the service.