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-sideSocketChanneland 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 BuffersMessageinto aChannelBufferand vice versa.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoderwhich 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 aSerializableobject 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 onSSLEngineorg.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 classServerBootstrap.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) classHttpTunnelingClientSocketChannel.ServletChannelHandlerprivate static classHttpTunnelingServlet.OutboundConnectionHandler -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.discard
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.discard Modifier and Type Class Description classDiscardClientHandlerHandles a client-side channel.classDiscardServerHandlerHandles 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 classEchoClientHandlerHandler implementation for the echo client.classEchoServerHandlerHandler 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 classBigIntegerDecoderDecodes the binary representation of aBigIntegerprepended with a magic number ('F' or 0x46) and a 32-bit integer length prefix into aBigIntegerinstance.classFactorialClientHandlerHandler for a client-side channel.classFactorialServerHandlerHandler 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 classHttpStaticFileServerHandlerA 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 classHttpHelloWorldServerHandler -
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 classHttpSnoopClientHandlerclassHttpSnoopServerHandler -
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 classHttpUploadClientHandlerclassHttpUploadServerHandler -
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 classAutobahnServerHandlerHandles 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 classWebSocketClientHandler -
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 classWebSocketServerHandlerHandles 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 classLocalTimeClientHandlerclassLocalTimeServerHandler -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.objectecho
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.objectecho Modifier and Type Class Description classObjectEchoClientHandlerHandler implementation for the object echo client.classObjectEchoServerHandlerHandles 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 classPortUnificationServerHandlerManipulates 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 classHexDumpProxyInboundHandlerprivate classHexDumpProxyInboundHandler.OutboundHandler -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.qotm
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.qotm Modifier and Type Class Description classQuoteOfTheMomentClientHandlerclassQuoteOfTheMomentServerHandler -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.example.securechat
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.example.securechat Modifier and Type Class Description classSecureChatClientHandlerHandles a client-side channel.classSecureChatServerHandlerHandles 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 classTelnetClientHandlerHandles a client-side channel.classTelnetServerHandlerHandles 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 classUptimeClientHandlerKeep 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 classDelimiterBasedFrameDecoderA decoder that splits the receivedChannelBuffers by one or more delimiters.classFixedLengthFrameDecoderA decoder that splits the receivedChannelBuffers by the fixed number of bytes.classFrameDecoderDecodes the receivedChannelBuffers into a meaningful frame object.classLengthFieldBasedFrameDecoderA decoder that splits the receivedChannelBuffers dynamically by the value of the length field in the message.classLineBasedFrameDecoderA decoder that splits the receivedChannelBuffers 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 classHttpChunkAggregatorAChannelHandlerthat aggregates anHttpMessageand its followingHttpChunks into a singleHttpMessagewith no followingHttpChunks.private classHttpClientCodec.DecoderclassHttpContentDecoderDecodes the content of the receivedHttpRequestandHttpChunk.classHttpContentDecompressorclassHttpMessageDecoderclassHttpRequestDecoderclassHttpResponseDecoder -
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 classWebSocket00FrameDecoderDecodesChannelBuffers intoWebSocketFrames.classWebSocket07FrameDecoderDecodes a web socket frame from wire protocol version 7 format.classWebSocket08FrameDecoderDecodes a web socket frame from wire protocol version 8 format.classWebSocket13FrameDecoderDecodes a web socket frame from wire protocol version 13 format.classWebSocketServerProtocolHandlerHandles WebSocket control frames (Close, Ping, Pong) and data frames (Text and Binary) are passed to the next handler in the pipeline.classWebSocketServerProtocolHandshakeHandlerHandles 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 classCompatibleMarshallingDecoderclassMarshallingDecoderDecoder 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 classProtobufVarint32FrameDecoderA decoder that splits the receivedChannelBuffers 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 classReplayingDecoder<T extends java.lang.Enum<T>>A specialized variation ofFrameDecoderwhich 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 classRtspMessageDecoderDecodesChannelBuffers into RTSP messages represented inHttpMessages.classRtspRequestDecoderDecodesChannelBuffers into RTSP requests represented inHttpRequests.classRtspResponseDecoderDecodesChannelBuffers into RTSP responses represented inHttpResponses. -
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 classObjectDecoderA decoder which deserializes the receivedChannelBuffers 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 classSocksAuthRequestDecoderDecodesChannelBuffers intoSocksAuthRequest.classSocksAuthResponseDecoderDecodesChannelBuffers intoSocksAuthResponse.classSocksCmdRequestDecoderDecodesChannelBuffers intoSocksCmdRequest.classSocksCmdResponseDecoderDecodesChannelBuffers intoSocksCmdResponse.classSocksInitRequestDecoderDecodesChannelBuffers intoSocksInitRequest.classSocksInitResponseDecoderDecodesChannelBuffers 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 classSpdyFrameCodecAChannelHandlerthat encodes and decodes SPDY Frames.classSpdySessionHandlerManages 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 classBlockingReadHandler<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 classSslHandler -
Uses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.timeout
Subclasses of SimpleChannelUpstreamHandler in org.jboss.netty.handler.timeout Modifier and Type Class Description classIdleStateAwareChannelUpstreamHandlerAn extendedSimpleChannelUpstreamHandlerthat adds the handler method for anIdleStateEvent.classIdleStateHandlerTriggers anIdleStateEventwhen aChannelhas not performed read, write, or both operation for a while.classReadTimeoutHandlerRaises aReadTimeoutExceptionwhen no data was read within a certain period of time.
-