netty5/transport-native-epoll
Norman Maurer d1a60e682a Allow to change epoll mode
Motivation:
Netty uses edge-triggered epoll by default for performance reasons. The downside here is that a messagesPerRead limit can not be enforced correctly, as we need to consume everything from the channel when notified.

Modification:
- Allow to switch epoll modes before channel is registered
- Some refactoring to share more code

Result:
It's now possible to switch epoll mode.
2015-02-04 21:41:58 +01:00
..
src Allow to change epoll mode 2015-02-04 21:41:58 +01:00
pom.xml Generate non-test JAR for netty-testsuite 2014-12-15 09:17:51 +09:00
README.md Introduce a native transport for linux using epoll ET 2014-02-15 22:42:07 +01:00

Native transport for Linux

See our wiki page.