CallUI

class CallUI(call: Call, val activityClazz: Class<*>, val actions: MutableStateFlow<Set<CallUI.Action>>? = null, val scope: CoroutineScope = CoroutineScope(Dispatchers.IO), floatingMessagePresenter: FloatingMessagePresenter = CallUIFloatingMessagePresenter(isGlassesSDK = KaleyraVideo.isGlassesSdk, logger = KaleyraVideo.logger), callUIButtonsProvider: CallUIButtonsProvider = DefaultCallUIButtonsProvider(call.type, call.state, actions, scope)) : Call, FloatingMessagePresenter, CallUIButtonsProvider

Constructors

Link copied to clipboard
constructor(call: Call, activityClazz: Class<*>, actions: MutableStateFlow<Set<CallUI.Action>>? = null, scope: CoroutineScope = CoroutineScope(Dispatchers.IO), floatingMessagePresenter: FloatingMessagePresenter = CallUIFloatingMessagePresenter(isGlassesSDK = KaleyraVideo.isGlassesSdk, logger = KaleyraVideo.logger), callUIButtonsProvider: CallUIButtonsProvider = DefaultCallUIButtonsProvider(call.type, call.state, actions, scope))

Types

Link copied to clipboard
sealed class Action

Call Action triggered by the UI

Link copied to clipboard
sealed class Button : UIButton

Call Button representing an action on the call UI

Link copied to clipboard
sealed class DisplayMode

DisplayMode representing the way call UI is displayed

Link copied to clipboard
sealed class PresentationMode

Properties

Link copied to clipboard
val actions: MutableStateFlow<Set<CallUI.Action>>? = null

MutableStateFlow> The MutableStateFlow containing the set of actions

Link copied to clipboard

Class<*> the activity that will be used to display the call UI

Link copied to clipboard
open override val buttons: StateFlow<Set<CallUI.Button>>

Current Call UI buttons

Link copied to clipboard

Buttons Provider represents an optional callback that is invoked when call buttons hierarchy is about to being displayed on call UI. This callback allows to return an updated set of Call Buttons if some call button must be added or removed in the integration use case.

Link copied to clipboard
open override val chatId: SharedFlow<String>
Link copied to clipboard
open override val creationDate: Date
Link copied to clipboard

The display events successfully sent

Link copied to clipboard
open override val effects: Effects
Link copied to clipboard
open override val floatingMessages: SharedFlow<FloatingMessage?>

A SharedFlow emitting the currently presented floating message, or null if no message is presented.

Link copied to clipboard
open override val id: String
Link copied to clipboard
open override val inputs: Inputs
Link copied to clipboard

A property that returns true if the call is a link call.

Link copied to clipboard
open override val participants: StateFlow<CallParticipants>
Link copied to clipboard
open override val preferredType: StateFlow<Call.PreferredType>
Link copied to clipboard

The presentation mode events successfully sent

Link copied to clipboard
open override val recording: StateFlow<Call.Recording>
Link copied to clipboard
val scope: CoroutineScope
Link copied to clipboard
open override val serverId: SharedFlow<String>
Link copied to clipboard
open override val sharedFolder: SharedFolder
Link copied to clipboard
open override val state: StateFlow<Call.State>
Link copied to clipboard
open override val time: Call.Time
Link copied to clipboard
open override val type: StateFlow<Call.Type>
Link copied to clipboard
open override val whiteboard: Whiteboard
Link copied to clipboard

A property that indicates whether the user feedback is asked at the end of call.

Functions

Link copied to clipboard
fun Call.amIAlone(): Flow<Boolean>

Utility function to detect whenever the logged SDK user is alone in the call

Link copied to clipboard
fun Call.amIWaitingOthers(): Flow<Boolean>

Utility function to retrieve whenever my participant is waiting for other participants to publish their audio or video streams

Link copied to clipboard
Link copied to clipboard
fun change(presentationMode: CallUI.PresentationMode): Boolean
Link copied to clipboard
open override fun connect()
Link copied to clipboard
open override fun dismiss(message: FloatingMessage)

Dismisses a floating message.

Link copied to clipboard

Utility function to retrieve whenever a local stream has been published and currently visible/audible to other call participants

Link copied to clipboard
fun Call.doOthersHaveStreams(): Flow<Boolean>

Utility function to retrieve whenever any of the other participants have published streams

Link copied to clipboard
open override fun end()
Link copied to clipboard
fun Call.hasAudioInput(): Flow<Boolean>

Utility function to detect whenever an audio input is available

Link copied to clipboard

Utility function to detect whenever an internal video input is available

Link copied to clipboard
fun Call.hasScreenSharingInput(): Flow<Boolean>

Utility function to detect whenever a screen sharing input is available

Link copied to clipboard

Utility function to detect whenever an input is active

Link copied to clipboard

Utility function to detect whenever the app screen input is active

Link copied to clipboard

Utility function to detect whenever the screen input is active

Link copied to clipboard
inline fun <T : Input> Call.isInputActive(): Flow<Boolean>

Utility function to detect whenever an input is active

Link copied to clipboard
open override fun present(message: FloatingMessage)

Presents a floating message to the user.

Link copied to clipboard

Set the activity display mode

Link copied to clipboard
fun show(): Boolean

Show the call ui

Link copied to clipboard
fun Call.toAudioInput(): Flow<Input.Audio?>
Link copied to clipboard
fun Call.toCameraStreamAudio(): Flow<Input.Audio?>

Utility function to detect whenever a stream with audio has been created

Link copied to clipboard
fun Call.toCameraVideoInput(): Flow<Input.Video.My?>
Link copied to clipboard
fun Call.toInCallParticipants(): Flow<List<CallParticipant>>

Utility function to retrieve the participants that are in-call

Link copied to clipboard
fun Call.toMe(): Flow<CallParticipant.Me>

Utility function to retrieve my participant

Link copied to clipboard
fun Call.toMuteEvents(): Flow<Input.Audio.Event.Request.Mute>

Utility function to detect whenever an audio mute event has been sent

Link copied to clipboard
fun Call.toMyCameraStream(): Flow<Stream.Mutable>