ConferenceLogRx

class ConferenceLogRx

Reactive API of ConferenceLog.

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

Functions

Link copied to clipboard
fun getConferenceEntries(before: Date?, after: Date?, limit: Int = 10, sortDescending: Boolean = true): Single<List<ConferenceEntry>>

Fetches the conference log entries related to this user within the specified time interval.

Link copied to clipboard
fun getMissedCalls(): Single<List<MissedCall>>

Get missed calls registered for user logged in session

Link copied to clipboard
fun markAsReadMissingCall(): Completable

Mark the missed calls as read.

Properties

Link copied to clipboard
val missingCallEntry: Observable<List<MissedCall>>

Emits when a MissedCall is received.

Link copied to clipboard
val newConferenceEntry: Observable<ConferenceEntry>

Emits when a new ConferenceEntry is received.