The following parameters appear in the signature of any event handler (callback) function (or functions) that you subscribe to this event:
Syntax
function ( jsdo , success , request )
jsdo
A reference to the JSDO that invoked the method. For more information, see the description of jsdo property of the request object.
success
A boolean that is true if the operation was successful. For more information, see the description of success property of the request object.
request
A reference to the request object returned after the operation completes. For more information, see the description of request object.
Application code can subscribe a callback to this event by invoking the subscribe( ) method on a JSDO instance.
Note: To subscribe a handler for this event, the subscribe( ) method requires that you pass, as a parameter, the name of the invocation method to which the event applies.
Example
The following code fragment subscribes the function, onAfterInvokeGetOrderTotalAndStatus, to handle the afterInvoke event fired on the JSDO, dataSet, for an invocation of the getOrderTotalAndStatus( ) invocation method passed the parameters specified by paramObject: