by Rob Richardson
Rob Richardson is a software craftsman building web properties in ASP.NET and Node, React and Vue. He's a frequent speaker at conferences, user groups, and community events, and a diligent teacher and student of high quality software development. You can find this and other talks on https://robrich.org/presentations and follow him on twitter at @rob_rich.
relating to or being a computer operation that can occur independently, without waiting for another event.
source: dictionary.com/browse/asynchronous
Client-side:Do things in parallelsource: http://benhoff.net/qt-interface-design.html |
Server-side:Yield while I'm waitingsource: https://itxdesign.com/vps-vs-shared-hosting/ |
Think synchronous
Run asynchronous
async
& await
keywords
Clearly stolen inspired by C# and JavaScript
Identical syntax to C# and JavaScript
Compiler builds a resumable state machine
Think synchronously. Run asynchronously.