Java NIO - using Selectors
问题 Got some quick questions on using a non blocking selector - answering any of the below would be greatly appreciated: I have just ben learning about the selector (java NIO model) and want to clarify some facts. Picked up most of the key points from tutorials as well as the SO question: Java NIO: Selectors so: from the question linked above, a Server socket channel is registered to listen for accept, when accepted a channel is registered for read and once read it is registered for write. How