DMA Embedded Python Engine
Build 21
|
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... | |
Engine life-cycle events : Load / Unload.
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.
cxt | - Context |
void DMA::OnEngineUnload | ( | Context | cxt | ) |
Called when Engine is unloaded.
Useful to clean up any Python-specific such as threads.
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.
cxt | - Context |