Index
Asynchronous Computing Is Not the Same as Multi-Threading
Asynchronous Computing Is Not the Same as Multi-Threading
The actual implementation of asynchronous may be via time-sharing slices on one core processor, or it may be multi-threading.
In other words, asynchronous computing
may (or may not) use multi-threading
.
When writing asynchronously code, we do
not
need to know about these low level details, and do not have control over them. We only need to
know that it works asynchronous (no-wait / non-blocking).
Coding Fundamentals (Chapter 501 - Concepts)
Chapter 501 - Concepts
Search Site
Home
Back To Top