CreateThreadCallback
Defines a callback for the thread creation process.
Defines a callback for the thread creation process. This callback is invoked upon the completion of the thread creation attempt. It provides details about the newly created thread or information about any exception that may have occurred during the creation process.
Syntax:typealias CreateThreadCallback = InAppThreadCallback
Parameters
Parameters | Type | Description |
---|---|---|
thread | InAppThread | The in-app thread that was created, if the creation was successful. |
exception | WebexConnectException | Optional exception returned in case of error during thread creation. |
Updated 8 days ago