▲ | dragonwriter 2 days ago | |||||||
> async, parallelism, concurrency, why not all three? async is a concurrency mechanism. | ||||||||
▲ | JackSlateur 2 days ago | parent [-] | |||||||
async enables a concurrency potential, nothing more That is, if you use external stuff and can delegate work to them, then async is concurrent (async io for instance) But if you do not, then async is regular code with extra steps | ||||||||
|