Package | Description |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.memcache.binary |
Implementations and Interfaces for the Memcache Binary protocol.
|
io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
Modifier and Type | Method and Description |
---|---|
protected ChannelHandlerAppender |
ChannelHandlerAppender.add(ChannelHandler... handlers)
Adds the specified handlers to the list of the appended handlers.
|
protected ChannelHandlerAppender |
ChannelHandlerAppender.add(ChannelHandler handler)
Adds the specified handler to the list of the appended handlers with the auto-generated handler name.
|
protected ChannelHandlerAppender |
ChannelHandlerAppender.add(Iterable<? extends ChannelHandler> handlers)
Adds the specified handlers to the list of the appended handlers.
|
protected ChannelHandlerAppender |
ChannelHandlerAppender.add(String name,
ChannelHandler handler)
Adds the specified handler to the list of the appended handlers.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpClientCodec
A combination of
HttpRequestEncoder and HttpResponseDecoder
which enables easier client side HTTP implementation. |
class |
HttpServerCodec
A combination of
HttpRequestDecoder and HttpResponseEncoder
which enables easier server side HTTP implementation. |
Modifier and Type | Class and Description |
---|---|
class |
BinaryMemcacheClientCodec
The client codec that combines the proper encoder and decoder.
|
class |
BinaryMemcacheServerCodec
The full server codec that combines the correct encoder and decoder.
|
Modifier and Type | Class and Description |
---|---|
class |
SpdyHttpCodec
A combination of
SpdyHttpDecoder and SpdyHttpEncoder |
Copyright © 2008–2015 The Netty Project. All rights reserved.