The IRuntimeHook interface provides a hook callback interface. More...
#include <runtime_intf.h>
Classes | |
struct | tHookInfo |
Hook Info Struct. More... | |
Public Member Functions | |
virtual tResult | RuntimeHook (const tHookInfo &sHookInfo, const iobject_ptr< IObject > &pObject)=0 |
This method will be called at specific stages during runtime operation, see tRuntimeHookId. | |
The IRuntimeHook interface provides a hook callback interface.
This mechanism allows you to react upon changes within the runtime. Use the RegisterHook and UnregisterHook methods to insert your hook into the processing chain. Hooks are called before and after an operation is performed in the runtime.
Definition at line 76 of file runtime_intf.h.
|
pure virtual |
This method will be called at specific stages during runtime operation, see tRuntimeHookId.
sHookInfo | [in] The Hook Information what happened. |
pObject | [in] Optional pointer to the object the Hook Event belongs to |
ERR_CANCELED | The hook call will break and no further hook will be called. |