December 2015
Intermediate to advanced
292 pages
6h 16m
English
A selector is used in an NIO application and allows one thread to handle multiple channels. The selector coordinates multiple channels and their events. It identifies those channels that are ready for processing. If we were to use a thread per channel, then we will find ourselves switching between threads frequently. This switching process can be expensive. Using a single thread to handle multiple channels avoids some of this overhead.
The following figure depicts this architecture. A thread is registered with a selector. The selector will identify the channels and events that are ready for processing.

A selector is supported by two ...
Read now
Unlock full access