ConferencesRx

Reactive API of Conferences.

This class replicates some of the methods included in Conferences but using Rx types as return values instead of callbacks. It also exposes the new conference events using a Rx observable.

Properties

Link copied to clipboard

Returns a list of currently available Conference.

Link copied to clipboard
val isAvailable: Observable<Boolean>
Link copied to clipboard

Emits when a new attended transfer is received. This emitter takes into account whether the user has enabled the Do-not-disturb option or not.

Link copied to clipboard
val newConference: Observable<Conference>

Emits when a new Conference is received. This emitter takes into account whether the user has enabled the Do-not-disturb option or not.

Link copied to clipboard
val state: Observable<QssClient.State>

Emits the conference QssClient.State whenever it changes. When a subscriber is added, it will also emit the current session state.

Functions

Link copied to clipboard

Creates a new conference.

Link copied to clipboard
fun createdAttendedConference(callee: String, currentConference: Conference): Single<Conference>

Starts a new attended transfer to the specified callee.

Link copied to clipboard
fun isConferenceStillPending(invitationId: String): Single<Boolean>

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

Link copied to clipboard
fun join(context: Context, roomUri: RoomUri, mediaTypes: List<MediaType>? = null): Single<Conference>

Joins the conference specified by roomUri.