PublishTypingIndicatorCallback
Defines a callback for publishing a typing indicator event.
This callback is invoked after attempting to publish a typing indicator, providing the thread, the typing state, and an optional exception if an error occurred.
Syntax: Syntax: typealias PublishTypingIndicatorCallback = (thread: InAppThread, isTyping: Boolean, exception: WebexConnectException?) -> Unit
Parameters
Parameters | Type | Description |
---|---|---|
thread | InAppThread | The in-app thread to which the typing indicator is being published. |
isTyping | Boolean | Boolean indicating whether the user is currently typing or not. |
exception | WebexConnectException | Optional exception returned in case of an error during the publish operation. |
Updated 1 day ago