sippo-sdk / com.quobis.sippo.sipposdk.conferencelog / ConferenceLog

ConferenceLog

class ConferenceLog

The conference log service.

This class allows performing conference log related actions like obtaining the conference entries within a certain time interval. It also allows adding a listener to receive new conference entries (@see ConferenceLogListener).

Properties

rx

val rx: ConferenceLogRx

Access to the reactive API of the service.

Functions

addListener

fun addListener(listener: ConferenceLogListener): Unit

Adds a listener to receive new conference entry events.

getConferenceEntries

fun getConferenceEntries(before: Date?, after: Date?, limit: Int = 10, sortDescending: Boolean = true, onCompletion: (Either<List<ConferenceEntry>, SippoResourceError>) -> Unit): Unit

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

removeListener

fun removeListener(listener: ConferenceLogListener): Unit

Removes the specified listener.