您的位置:首页 > Web前端

The Different Definitions between Concurrent processing and Asynchronous processing

2013-11-28 16:14 405 查看
Concurrent processing refers to multiple logical control flows that may execute in parallel.

Asynchronous processing,
on the other hand, is effectively a mechanism for the asynchronous (i.e., nonblocking) invocation of methods/functions. In other words, the caller invokes the method and can continue processing while the method is being executed.

by the way

Concurrent processing implies
the simultaneous execution of multiple tasks. It is a function of design, whereas parallel computing is
a function of hardware.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: