Uses of Enum
io.netty.handler.codec.spdy.SpdyVersion
Packages that use SpdyVersion
Package
Description
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of SpdyVersion in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return SpdyVersionModifier and TypeMethodDescriptionstatic SpdyVersion
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 io.netty.handler.codec.spdy with parameters of type SpdyVersionModifier and TypeMethodDescription(package private) static SpdyHeaderBlockDecoder
SpdyHeaderBlockDecoder.newInstance
(SpdyVersion spdyVersion, int maxHeaderSize) (package private) static SpdyHeaderBlockEncoder
SpdyHeaderBlockEncoder.newInstance
(SpdyVersion version, int compressionLevel, int windowBits, int memLevel) Constructors in io.netty.handler.codec.spdy with parameters of type SpdyVersionModifierConstructorDescriptionSpdyFrameCodec
(SpdyVersion version) Creates a new instance with the specifiedversion
,validateHeaders (true)
, and the default decoder and encoder options (maxChunkSize (8192)
,maxHeaderSize (16384)
,compressionLevel (6)
,windowBits (15)
, andmemLevel (8)
).SpdyFrameCodec
(SpdyVersion version, boolean validateHeaders) Creates a new instance with the specifiedversion
,validateHeaders
, 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 specifiedversion
,validateHeaders (true)
, decoder and encoder options.SpdyFrameCodec
(SpdyVersion version, int maxChunkSize, int maxHeaderSize, int compressionLevel, int windowBits, int memLevel, boolean validateHeaders) Creates a new instance with the specifiedversion
,validateHeaders
, decoder and encoder options.protected
SpdyFrameCodec
(SpdyVersion version, int maxChunkSize, SpdyHeaderBlockDecoder spdyHeaderBlockDecoder, SpdyHeaderBlockEncoder spdyHeaderBlockEncoder, boolean validateHeaders) 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
.(package private)
SpdyHeaderBlockJZlibEncoder
(SpdyVersion version, int compressionLevel, int windowBits, int memLevel) SpdyHeaderBlockRawDecoder
(SpdyVersion spdyVersion, int maxHeaderSize) SpdyHeaderBlockRawEncoder
(SpdyVersion version) (package private)
SpdyHeaderBlockZlibDecoder
(SpdyVersion spdyVersion, int maxHeaderSize) (package private)
SpdyHeaderBlockZlibEncoder
(SpdyVersion spdyVersion, int compressionLevel) SpdyHttpCodec
(SpdyVersion version, int maxContentLength) Creates a new instance with the specified decoder options.SpdyHttpCodec
(SpdyVersion version, int maxContentLength, boolean validateHttpHeaders) Deprecated.SpdyHttpCodec
(SpdyVersion version, int maxContentLength, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified decoder options.SpdyHttpDecoder
(SpdyVersion version, int maxContentLength) Creates a new instance.SpdyHttpDecoder
(SpdyVersion version, int maxContentLength, boolean validateHeaders) Deprecated.protected
SpdyHttpDecoder
(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap) Creates a new instance with the specified parameters.protected
SpdyHttpDecoder
(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, boolean validateHeaders) Deprecated.Use theSpdyHttpDecoder(SpdyVersion, int, Map, HttpHeadersFactory, HttpHeadersFactory)
constructor instead.protected
SpdyHttpDecoder
(SpdyVersion version, int maxContentLength, Map<Integer, FullHttpMessage> messageMap, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory) Creates a new instance with the specified parameters.SpdyHttpEncoder
(SpdyVersion version) Creates a new instance.SpdyHttpEncoder
(SpdyVersion version, boolean headersToLowerCase, boolean validateHeaders) Creates a new instance.SpdySessionHandler
(SpdyVersion version, boolean server) Creates a new session handler.
SpdyHttpDecoder(SpdyVersion, int, Map, HttpHeadersFactory, HttpHeadersFactory)
constructor instead.