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

ParameterTypeDescription
threadInAppThreadThe in-app thread relevant to the callback, if the operation was successful.
exceptionWebexConnectExceptionOptional exception returned in case of error while performing the operation on the thread.