Asynchronous Process¶
About Asynchronous Process¶
Asynchronous process is one of of processing by calling the business logic.When it is not important to get the execution result of business logic, overall response can be can be made earlier by utilizing asynchronous process.If the process that meets conditions below is performed, user interface response could be made earlier,if you run the process by the thread that is different from the thread of caller side process.
- Although the processing time itself is relatively short, response time is long from the user interface viewpoint. (more than several seconds)
- Real-time execution of process is not necessary, but the process should be run as early as possible after the process request.
- It is not necessary on the process caller side to worry about the completion of process.
Specifications¶
Please refer to the Asynchronous Process Specifications for the specifications of asynchronous process.
Programming Method¶
Please refer to the Asynchronous Process Programming Guide for the programming method of asynchronous process.