DMA Embedded Python Engine  Build 21
 All Classes Files Functions Variables Enumerations Enumerator Groups Pages
Callbacks_Engine

Engine life-cycle events : Load / Unload. More...

Functions

void DMA::OnEngineLoad (Context cxt)
 Called when Engine is loaded. More...
 
void DMA::OnStart (Context cxt)
 Called after all records have been OnInitialize()'ed and data is ready to flow. More...
 
void DMA::OnEngineUnload (Context cxt)
 Called when Engine is unloaded. More...
 

Detailed Description

Engine life-cycle events : Load / Unload.

Function Documentation

void DMA::OnEngineLoad ( Context  cxt)

Called when Engine is loaded.

Useful to register securities and initialize any Python-specific business logic, such as kicking off Python threads.

Parameters
cxt- Context
void DMA::OnEngineUnload ( Context  cxt)

Called when Engine is unloaded.

Useful to clean up any Python-specific such as threads.

Parameters
cxt- Context
void DMA::OnStart ( Context  cxt)

Called after all records have been OnInitialize()'ed and data is ready to flow.

Use this to do final initialization before pumping data.

Parameters
cxt- Context