Skip to main content

ProcessBaseDataIODelegate

Delegate for processing base data I/O operations from the native C++ DLL. This callback is invoked by the native library to handle data processing events.

Parameters

ParameterTypeDescription
contextPtrIntPtrPointer to the native context object containing processing data.

ProcessBaseDataIODelegateExecutionID

Delegate for processing base data I/O operations that include an execution identifier. Used when native callbacks need to distinguish between different execution contexts.

Parameters

ParameterTypeDescription
contextPtrIntPtrPointer to the native context object containing processing data.
executionIdintThe execution identifier associated with this callback invocation.

InworldExternalLogListener

Delegate for receiving log messages from the native C++ DLL. Allows the managed code to capture and process logging output from the native library.

Parameters

ParameterTypeDescription
severityintThe log level severity (0=verbose, 1=debug, 2=info, 3=warning, 4=error, 5=fatal).
messagestringThe log message content as a string.
lengthintThe length of the message string in characters.