vxfiSessionRegisterCreationCallback
vxfiSessionRegisterCreationCallback(
s_callbackFunction
)
=> t / nil
Description
Registers a SKILL function as callback to be called whenever the event for which it is registered is occurred.
Arguments
|
SKILL symbol representing the callback function to be called upon creation of a new Voltus-XFi session. |
Value Returned
Examples
The following example registers callback from the .cdsinit file:
(procedure (sessionConnectHandlers session)
(vxfiSessionConnect session "preExtractionRun" '_preExtractionRunCallback)
t
)
(vxfiSessionRegisterCreationCallback 'sessionConnectHandlers)
Return to top