Uses of Class
org.jboss.netty.handler.codec.spdy.SpdyVersion
-
Packages that use SpdyVersion Package Description org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
Uses of SpdyVersion in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy that return SpdyVersion Modifier and Type Method Description static SpdyVersion
SpdyVersion. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpdyVersion[]
SpdyVersion. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.handler.codec.spdy with parameters of type SpdyVersion Modifier and Type Method Description protected void
SpdyOrHttpChooser. addSpdyHandlers(ChannelHandlerContext ctx, SpdyVersion version)
Add allChannelHandler
's that are needed for SPDY with the given version.(package private) static SpdyHeaderBlockDecoder
SpdyHeaderBlockDecoder. newInstance(SpdyVersion spdyVersion, int maxHeaderSize)
(package private) static SpdyHeaderBlockEncoder
SpdyHeaderBlockEncoder. newInstance(SpdyVersion spdyVersion, int compressionLevel, int windowBits, int memLevel)
Constructors in org.jboss.netty.handler.codec.spdy with parameters of type SpdyVersion Constructor Description SpdyFrameCodec(SpdyVersion version)
Creates a new instance with the specifiedversion
and the default decoder and encoder options (maxChunkSize (8192)
,maxHeaderSize (16384)
,compressionLevel (6)
,windowBits (15)
, andmemLevel (8)
).SpdyFrameCodec(SpdyVersion version, int maxChunkSize, int maxHeaderSize, int compressionLevel, int windowBits, int memLevel)
Creates a new instance with the specified decoder and encoder options.SpdyFrameCodec(SpdyVersion version, int maxChunkSize, SpdyHeaderBlockDecoder spdyHeaderBlockDecoder, SpdyHeaderBlockEncoder spdyHeaderBlockEncoder)
SpdyFrameDecoder(SpdyVersion spdyVersion, SpdyFrameDecoderDelegate delegate)
Creates a new instance with the specifiedversion
and the defaultmaxChunkSize (8192)
.SpdyFrameDecoder(SpdyVersion spdyVersion, SpdyFrameDecoderDelegate delegate, int maxChunkSize)
Creates a new instance with the specified parameters.SpdyFrameEncoder(SpdyVersion spdyVersion)
Creates a new instance with the specifiedspdyVersion
.SpdyHeaderBlockJZlibEncoder(SpdyVersion spdyVersion, int compressionLevel, int windowBits, int memLevel)
SpdyHeaderBlockRawDecoder(SpdyVersion spdyVersion, int maxHeaderSize)
SpdyHeaderBlockRawEncoder(SpdyVersion spdyVersion)
SpdyHeaderBlockZlibDecoder(SpdyVersion spdyVersion, int maxHeaderSize)
SpdyHeaderBlockZlibEncoder(SpdyVersion spdyVersion, int compressionLevel)
SpdyHttpCodec(SpdyVersion version, int maxContentLength)
Creates a new instance with the specified decoder options.SpdyHttpDecoder(SpdyVersion spdyVersion, int maxContentLength)
Creates a new instance.SpdyHttpDecoder(SpdyVersion spdyVersion, int maxContentLength, java.util.Map<java.lang.Integer,HttpMessage> messageMap)
Creates a new instance with the specified parameters.SpdyHttpEncoder(SpdyVersion spdyVersion)
Creates a new instance.SpdySessionHandler(SpdyVersion spdyVersion, boolean server)
Creates a new session handler.
-