Summary

This lesson summarizes the chapter on event-based concurrency with some concluding remarks.

We'll cover the following...

We’ve presented a bare-bones introduction to a different style of concurrency based on events. Event-based servers give control of scheduling to the application itself but do so at some cost in complexity and difficulty of integration with other aspects of modern systems (e.g., paging). Because of these challenges, no single approach has emerged as best. Thus, both threads and events are likely to ...