I am looking into the NioWorker.run() method and trying to understand how it works. Below is the simplified version of the code:
for(;;) {
try {
SelectorUtil.select(selector);
if (wakenUp.get()) {
selector.wakeup();
}
cancelledKeys = 0;
processRegisterTaskQueue();
processWriteTaskQueue();
processSelectedKeys(selector.selectedKeys());
} catch (Throwable t) {
}
}
More-less it is clear what it does however I have some questions:
1. Selector.select(selector) performs selection with 500 millisecond timeout. Why it is not just a blocking call?
2. What is the purpose of the below fragment? Why do we need to perform wakeup?
if (wakenUp.get()) {
selector.wakeup();
}
Thanks in advance