asiRegCallBackOnSimComp
asiRegCallBackOnSimComp(
o_session
t_callback
)
=> t / nil
Description
Registers the specified user-defined callback function to run after completion of a simulation. The callback function should accept two arguments, a session object and the simulation status.
Arguments
Value Returned
|
Returns |
|
Example
asiRegCallBackOnSimComp(asiGetCurrentSession 'myfunc)
In this example, the myfunc function is registered to run after completion of a simulation. You can define myfunc as:
(defmethod myfunc (session status)
....
)
Return to top