Trustin Lee
af37ec4f23
Ported the HTTP snoop example to the new API
- Replaced pipeline factories with initializers - Ported essential parts related with HTTP to the new API - Replaced ChannelHandlerAdapter.combine() with CombinedChannelHandler - Fixed a bug where ReplayingDecoder does not notify the next handler - Fixed a bug where ReplayingDecoder calls wrong callDecode() method - Added a destination buffer as an argument to AbstractChannel.doRead() for easier implementation - Fixed a bug where NioSocketChannel did not try to increase the inbound buffer size (moved the logic to AbstractChannel)
#The Netty Project
Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.
Links
-
Web Site: http://netty.io/
-
Docs: http://netty.io/docs/
-
Blog: http://netty.io/blog/
-
Twitter: @netty_project
Getting Netty
-
Download Page: http://netty.io/downloads/
-
Maven Repository:
<dependencies>
...
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>X.Y.Z.Q</version>
<scope>compile</scope>
</dependency>
...
</dependencies>
Developer Information
-
Netty is setup to build using Maven
-
You need JDK 7 to build Netty. Netty will run with JDK 5 (v3.x) and JDK 6 (v4).
-
master branch contains code for Netty v4
-
3.2 branch contains code for Netty v3.X
Description
Languages
Java
99.8%
Shell
0.1%