What
CONCURRENT SERVERS WITHOUT THREADS
How
Why
- Pros: No Lock needed.
- Cons:
- Blocking System Calls because only one thread is running. Unlike thread based concurrency which can have another thread running while doing IO.
Rules
- No blocking calls are allowed