InAppThreadCallback
Defines a callback for operations related to in-app threads.
Defines a callback for operations related to in-app threads. This callback delivers the result of the operation, providing either the thread object involved in the operation, or an exception if an error occurred during the process.
Syntax: typealias InAppThreadCallback = (thread: InAppThread?, exception: WebexConnectException?) -> Unit
Parameters
Parameter | Type | Description |
---|---|---|
thread | InAppThread | The in-app thread relevant to the callback, if the operation was successful. |
exception | WebexConnectException | Optional exception returned in case of error while performing the operation on the thread. |
Updated 8 days ago