Search⌘ K

Introduction to Event-Based Concurrency

Learn how to build concurrent programs using event-based concurrency instead of threads. Understand event loops, asynchronous I/O, and the benefits of this approach for managing concurrency in servers and GUI apps.

We'll cover the following...

Thus far, we’ve written about concurrency as if the only way to build concurrent applications is to use threads. Like many things in life, this is not completely true. Specifically, a different style of concurrent programming is often used in both ...