Apama Capital Markets Foundation  10.7.0.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Session Initialization and Cleanup API

Functions

AP_SESSION_API void AP_SESSION_Init (AP_SESSION_AdapterInterface *adapterInterface, void *transportInternals, AP_SESSION_Interface **smi)
 
AP_SESSION_API void AP_SESSION_DeInit (AP_SESSION_Interface *smi)
 

Detailed Description

Session Initialization and Cleanup API

Function Documentation

AP_SESSION_API void AP_SESSION_DeInit ( AP_SESSION_Interface smi)

Deinitialize the Session library, called during adapter shutdown.

Parameters
smiThe AP_SESSION_Interface created by AP_SESSION_Init.
See also
AP_SESSION_Init
AP_SESSION_Interface
AP_SESSION_API void AP_SESSION_Init ( AP_SESSION_AdapterInterface adapterInterface,
void *  transportInternals,
AP_SESSION_Interface **  smi 
)

Initialize the Session library, called during adapter startup.

Parameters
[in]adapterInterfaceA pointer to a initialized AP_SESSION_AdapterInterface and used to construct the AP_SESSION_Interface smi.
[in]transportInternalsA pointer to the transport internals and used to construct the AP_SESSION_Interface smi.
[out]smiThe resultant fully constructed AP_SESSION_Interface that is used when calling all other Session APIs.
See also
AP_SESSION_DeInit
AP_SESSION_AdapterInterface
AP_SESSION_Interface