Asynchronous method calls enable an application to invoke methods in parallel, to reduce the elapsed time taken to process the business transaction. Asynchronous method calls use the JADE messaging framework. For details, see Chapter 15, "Using the Messaging Framework".
The following steps are required in your logic to perform an asynchronous method call.
Create an instance of the
Set the object properties in your JadeMethodContext instance (for example, the
Initiate the asynchronous method call, by using the
At least one worker application must be running with a name matching the value of the workerAppName property.
Continue processing until the results of the asynchronous method call must be harvested.
Wait for the call to complete, by using the
Check for call errors (that is, exceptions).
Examine the call result value.
The