实例
A reference implementation of the Reactor Pattern with Java NIO
A typical server application, such as a web server, needs to process thousands of request concurrently. Therefore, the modern web server needs to meet the following requirements
- Handling of thousands of connections simultaneously (significant number of connections may be in idle state as well)
- Handling high latency connections
https://github.com/kasun04/nio-reactor