Uses of Interface
org.jboss.netty.channel.LifeCycleAwareChannelHandler
-
Packages that use LifeCycleAwareChannelHandler Package Description org.jboss.netty.example.factorial org.jboss.netty.example.portunification org.jboss.netty.handler.codec.compression Encoder and decoder which compresses and decompressesChannelBuffers in a compression format such as zlib and gzip.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.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError.org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer. -
-
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.example.factorial
Classes in org.jboss.netty.example.factorial that implement LifeCycleAwareChannelHandler 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. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.example.portunification
Classes in org.jboss.netty.example.portunification that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classPortUnificationServerHandlerManipulates the current pipeline dynamically to switch protocols or enable SSL or GZIP. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.compression
Classes in org.jboss.netty.handler.codec.compression that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classJdkZlibEncoderCompresses aChannelBufferusing the deflate algorithm.classZlibEncoderCompresses aChannelBufferusing the deflate algorithm. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.frame
Classes in org.jboss.netty.handler.codec.frame that implement LifeCycleAwareChannelHandler 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 LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.http
Classes in org.jboss.netty.handler.codec.http that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classHttpChunkAggregatorAChannelHandlerthat aggregates anHttpMessageand its followingHttpChunks into a singleHttpMessagewith no followingHttpChunks.private classHttpClientCodec.DecoderclassHttpContentCompressorCompresses anHttpMessageand anHttpChunkingzipordeflateencoding while respecting the"Accept-Encoding"header.classHttpContentDecoderDecodes the content of the receivedHttpRequestandHttpChunk.classHttpContentDecompressorclassHttpContentEncoderEncodes the content of the outboundHttpResponseandHttpChunk.classHttpMessageDecoderclassHttpRequestDecoderclassHttpResponseDecoder -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.http.websocketx
Classes in org.jboss.netty.handler.codec.http.websocketx that implement LifeCycleAwareChannelHandler 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. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.marshalling
Classes in org.jboss.netty.handler.codec.marshalling that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classCompatibleMarshallingDecoderclassMarshallingDecoderDecoder which MUST be used withMarshallingEncoder. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.protobuf
Classes in org.jboss.netty.handler.codec.protobuf that implement LifeCycleAwareChannelHandler 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 LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.replay
Classes in org.jboss.netty.handler.codec.replay that implement LifeCycleAwareChannelHandler 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 LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.rtsp
Classes in org.jboss.netty.handler.codec.rtsp that implement LifeCycleAwareChannelHandler 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 LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.serialization
Classes in org.jboss.netty.handler.codec.serialization that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classObjectDecoderA decoder which deserializes the receivedChannelBuffers into Java objects. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.socks
Classes in org.jboss.netty.handler.codec.socks that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classSocksAuthRequestDecoderDecodesChannelBuffers intoSocksAuthRequest.classSocksAuthResponseDecoderDecodesChannelBuffers intoSocksAuthResponse.classSocksCmdRequestDecoderDecodesChannelBuffers intoSocksCmdRequest.classSocksCmdResponseDecoderDecodesChannelBuffers intoSocksCmdResponse.classSocksInitRequestDecoderDecodesChannelBuffers intoSocksInitRequest.classSocksInitResponseDecoderDecodesChannelBuffers intoSocksInitResponse. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.codec.spdy
Classes in org.jboss.netty.handler.codec.spdy that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classSpdyFrameCodecAChannelHandlerthat encodes and decodes SPDY Frames. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.queue
Classes in org.jboss.netty.handler.queue that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classBufferedWriteHandlerEmulates buffered write operation. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.ssl
Classes in org.jboss.netty.handler.ssl that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classSslHandler -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.stream
Classes in org.jboss.netty.handler.stream that implement LifeCycleAwareChannelHandler Modifier and Type Class Description classChunkedWriteHandlerAChannelHandlerthat adds support for writing a large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError. -
Uses of LifeCycleAwareChannelHandler in org.jboss.netty.handler.timeout
Classes in org.jboss.netty.handler.timeout that implement LifeCycleAwareChannelHandler Modifier and Type Class Description 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.
-