Uses of Class
org.jboss.netty.channel.SimpleChannelUpstreamHandler
-
Packages that use SimpleChannelUpstreamHandler Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.example.discard org.jboss.netty.example.echo org.jboss.netty.example.factorial org.jboss.netty.example.http.file org.jboss.netty.example.http.helloworld org.jboss.netty.example.http.snoop org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.client This is an example web service client.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.example.localtime org.jboss.netty.example.objectecho org.jboss.netty.example.portunification org.jboss.netty.example.proxy org.jboss.netty.example.qotm org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.example.uptime org.jboss.netty.handler.codec.frame Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessage
into aChannelBuffer
and vice versa.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoder
which enables implementation of a non-blocking decoder in the blocking I/O paradigm.org.jboss.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.org.jboss.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializable
object into a byte buffer and vice versa.org.jboss.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.queue The special-purpose handlers that store an event into an internal queue instead of propagating the event immediately.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine
org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.bootstrap
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.bootstrap Modifier and Type Class Description private class
ServerBootstrap.Binder
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.channel.socket.http
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.channel.socket.http Modifier and Type Class Description (package private) class
HttpTunnelingClientSocketChannel.ServletChannelHandler
private static class
HttpTunnelingServlet.OutboundConnectionHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.discard
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.discard Modifier and Type Class Description class
DiscardClientHandler
Handles a client-side channel.class
DiscardServerHandler
Handles a server-side channel. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.echo
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.echo Modifier and Type Class Description class
EchoClientHandler
Handler implementation for the echo client.class
EchoServerHandler
Handler implementation for the echo server. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.factorial
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.factorial Modifier and Type Class Description class
BigIntegerDecoder
Decodes the binary representation of aBigInteger
prepended with a magic number ('F' or 0x46) and a 32-bit integer length prefix into aBigInteger
instance.class
FactorialClientHandler
Handler for a client-side channel.class
FactorialServerHandler
Handler for a server-side channel. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.file
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.file Modifier and Type Class Description class
HttpStaticFileServerHandler
A simple handler that serves incoming HTTP requests to send their respective HTTP responses. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.helloworld
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.helloworld Modifier and Type Class Description class
HttpHelloWorldServerHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.snoop
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.snoop Modifier and Type Class Description class
HttpSnoopClientHandler
class
HttpSnoopServerHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.upload
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.upload Modifier and Type Class Description class
HttpUploadClientHandler
class
HttpUploadServerHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.autobahn
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.autobahn Modifier and Type Class Description class
AutobahnServerHandler
Handles handshakes and messages -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.client
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.client Modifier and Type Class Description class
WebSocketClientHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.server
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.http.websocketx.server Modifier and Type Class Description class
WebSocketServerHandler
Handles handshakes and messages -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.localtime
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.localtime Modifier and Type Class Description class
LocalTimeClientHandler
class
LocalTimeServerHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.objectecho
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.objectecho Modifier and Type Class Description class
ObjectEchoClientHandler
Handler implementation for the object echo client.class
ObjectEchoServerHandler
Handles both client-side and server-side handler depending on which constructor was called. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.portunification
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.portunification Modifier and Type Class Description class
PortUnificationServerHandler
Manipulates the current pipeline dynamically to switch protocols or enable SSL or GZIP. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.proxy
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.proxy Modifier and Type Class Description class
HexDumpProxyInboundHandler
private class
HexDumpProxyInboundHandler.OutboundHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.qotm
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.qotm Modifier and Type Class Description class
QuoteOfTheMomentClientHandler
class
QuoteOfTheMomentServerHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.securechat
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.securechat Modifier and Type Class Description class
SecureChatClientHandler
Handles a client-side channel.class
SecureChatServerHandler
Handles a server-side channel. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.telnet
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.telnet Modifier and Type Class Description class
TelnetClientHandler
Handles a client-side channel.class
TelnetServerHandler
Handles a server-side channel. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.uptime
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.uptime Modifier and Type Class Description class
UptimeClientHandler
Keep reconnecting to the server while printing out the current uptime and connection attempt status. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.frame
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.frame Modifier and Type Class Description class
DelimiterBasedFrameDecoder
A decoder that splits the receivedChannelBuffer
s by one or more delimiters.class
FixedLengthFrameDecoder
A decoder that splits the receivedChannelBuffer
s by the fixed number of bytes.class
FrameDecoder
Decodes the receivedChannelBuffer
s into a meaningful frame object.class
LengthFieldBasedFrameDecoder
A decoder that splits the receivedChannelBuffer
s dynamically by the value of the length field in the message.class
LineBasedFrameDecoder
A decoder that splits the receivedChannelBuffer
s on line endings. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.http
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.http Modifier and Type Class Description class
HttpChunkAggregator
AChannelHandler
that aggregates anHttpMessage
and its followingHttpChunk
s into a singleHttpMessage
with no followingHttpChunk
s.private class
HttpClientCodec.Decoder
class
HttpContentDecoder
Decodes the content of the receivedHttpRequest
andHttpChunk
.class
HttpContentDecompressor
class
HttpMessageDecoder
class
HttpRequestDecoder
class
HttpResponseDecoder
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.http.websocketx
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.http.websocketx Modifier and Type Class Description class
WebSocket00FrameDecoder
DecodesChannelBuffer
s intoWebSocketFrame
s.class
WebSocket07FrameDecoder
Decodes a web socket frame from wire protocol version 7 format.class
WebSocket08FrameDecoder
Decodes a web socket frame from wire protocol version 8 format.class
WebSocket13FrameDecoder
Decodes a web socket frame from wire protocol version 13 format.class
WebSocketServerProtocolHandler
Handles WebSocket control frames (Close, Ping, Pong) and data frames (Text and Binary) are passed to the next handler in the pipeline.class
WebSocketServerProtocolHandshakeHandler
Handles the HTTP handshake (the HTTP Upgrade request) -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.marshalling
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.marshalling Modifier and Type Class Description class
CompatibleMarshallingDecoder
class
MarshallingDecoder
Decoder which MUST be used withMarshallingEncoder
. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.protobuf
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.protobuf Modifier and Type Class Description class
ProtobufVarint32FrameDecoder
A decoder that splits the receivedChannelBuffer
s dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.replay
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.replay Modifier and Type Class Description class
ReplayingDecoder<T extends java.lang.Enum<T>>
A specialized variation ofFrameDecoder
which enables implementation of a non-blocking decoder in the blocking I/O paradigm. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.rtsp
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.rtsp Modifier and Type Class Description class
RtspMessageDecoder
DecodesChannelBuffer
s into RTSP messages represented inHttpMessage
s.class
RtspRequestDecoder
DecodesChannelBuffer
s into RTSP requests represented inHttpRequest
s.class
RtspResponseDecoder
DecodesChannelBuffer
s into RTSP responses represented inHttpResponse
s. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.serialization
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.serialization Modifier and Type Class Description class
ObjectDecoder
A decoder which deserializes the receivedChannelBuffer
s into Java objects. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.socks
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.socks Modifier and Type Class Description class
SocksAuthRequestDecoder
DecodesChannelBuffer
s intoSocksAuthRequest
.class
SocksAuthResponseDecoder
DecodesChannelBuffer
s intoSocksAuthResponse
.class
SocksCmdRequestDecoder
DecodesChannelBuffer
s intoSocksCmdRequest
.class
SocksCmdResponseDecoder
DecodesChannelBuffer
s intoSocksCmdResponse
.class
SocksInitRequestDecoder
DecodesChannelBuffer
s intoSocksInitRequest
.class
SocksInitResponseDecoder
DecodesChannelBuffer
s intoSocksInitResponse
. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.spdy
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.codec.spdy Modifier and Type Class Description class
SpdyFrameCodec
AChannelHandler
that encodes and decodes SPDY Frames.class
SpdySessionHandler
Manages streams within a SPDY session. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.queue
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.queue Modifier and Type Class Description class
BlockingReadHandler<E>
Emulates blocking read operation. -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.ssl
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.ssl Modifier and Type Class Description class
SslHandler
-
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.timeout
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.timeout Modifier and Type Class Description class
IdleStateAwareChannelUpstreamHandler
An extendedSimpleChannelUpstreamHandler
that adds the handler method for anIdleStateEvent
.class
IdleStateHandler
Triggers anIdleStateEvent
when aChannel
has not performed read, write, or both operation for a while.class
ReadTimeoutHandler
Raises aReadTimeoutException
when no data was read within a certain period of time.
-