afterInvoke event
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Fires after a custom invocation method is called asynchronously on a JSDO and a response to the Invoke operation request is received from the server.
Synchronous invocation method calls do not cause this event to fire.
Applies to: progress.data.JSDO class
The following parameters appear in the signature of any event handler (callback) function (or functions) that you subscribe to this event:
Syntax
|
- 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
booleanthat istrueif 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.
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:
|
See also:
beforeInvoke event, invocation method, subscribe( ) method (JSDO class), unsubscribe( ) method (JSDO class)