Idiomatic async programming like C# async/await

Kagamin via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Sep 12 00:15:31 PDT 2014


async/await is not so much about futures/promises, but 
optimization of IO-bound operations, i.e. when you wait on 
network/disk, you don't consume stack, threads and similar 
resources, an analog in D is vibe.d


More information about the Digitalmars-d-learn mailing list