Uses of Interface
org.jboss.netty.handler.codec.spdy.SpdyHeadersFrame
Packages that use SpdyHeadersFrame
Package
Description
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of SpdyHeadersFrame in org.jboss.netty.handler.codec.spdy
Subinterfaces of SpdyHeadersFrame in org.jboss.netty.handler.codec.spdyModifier and TypeInterfaceDescriptioninterface
A SPDY Protocol SYN_REPLY Frameinterface
A SPDY Protocol SYN_STREAM FrameClasses in org.jboss.netty.handler.codec.spdy that implement SpdyHeadersFrameModifier and TypeClassDescriptionclass
The defaultSpdyHeadersFrame
implementation.class
The defaultSpdySynReplyFrame
implementation.class
The defaultSpdySynStreamFrame
implementation.Fields in org.jboss.netty.handler.codec.spdy declared as SpdyHeadersFrameMethods in org.jboss.netty.handler.codec.spdy with parameters of type SpdyHeadersFrameModifier and TypeMethodDescriptionstatic void
SpdyHeaders.addHeader
(SpdyHeadersFrame frame, String name, Object value) Adds a new header with the specified name and value.private static HttpRequest
SpdyHttpDecoder.createHttpRequest
(int spdyVersion, SpdyHeadersFrame requestFrame) private static HttpResponse
SpdyHttpDecoder.createHttpResponse
(int spdyVersion, SpdyHeadersFrame responseFrame) (package private) abstract void
SpdyHeaderBlockDecoder.decode
(ChannelBuffer headerBlock, SpdyHeadersFrame frame) Decodes a SPDY Header Block, adding the Name/Value pairs to the given Headers frame.(package private) void
SpdyHeaderBlockRawDecoder.decode
(ChannelBuffer headerBlock, SpdyHeadersFrame frame) (package private) void
SpdyHeaderBlockZlibDecoder.decode
(ChannelBuffer headerBlock, SpdyHeadersFrame frame) protected void
SpdyHeaderBlockRawDecoder.decodeHeaderBlock
(ChannelBuffer headerBlock, SpdyHeadersFrame frame) private int
SpdyHeaderBlockZlibDecoder.decompress
(SpdyHeadersFrame frame) (package private) abstract ChannelBuffer
SpdyHeaderBlockEncoder.encode
(SpdyHeadersFrame frame) SpdyHeaderBlockJZlibEncoder.encode
(SpdyHeadersFrame frame) SpdyHeaderBlockRawEncoder.encode
(SpdyHeadersFrame headerFrame) SpdyHeaderBlockZlibEncoder.encode
(SpdyHeadersFrame frame) (package private) abstract void
SpdyHeaderBlockDecoder.endHeaderBlock
(SpdyHeadersFrame frame) (package private) void
SpdyHeaderBlockRawDecoder.endHeaderBlock
(SpdyHeadersFrame frame) (package private) void
SpdyHeaderBlockZlibDecoder.endHeaderBlock
(SpdyHeadersFrame frame) static String
SpdyHeaders.getHeader
(SpdyHeadersFrame frame, String name) Returns the header value with the specified header name.static String
SpdyHeaders.getHeader
(SpdyHeadersFrame frame, String name, String defaultValue) Returns the header value with the specified header name.static String
SpdyHeaders.getHost
(SpdyHeadersFrame frame) Returns the SPDY host header.static HttpMethod
SpdyHeaders.getMethod
(int spdyVersion, SpdyHeadersFrame frame) Returns theHttpMethod
represented by the HTTP method header.static String
SpdyHeaders.getScheme
(int spdyVersion, SpdyHeadersFrame frame) Returns the value of the URL scheme header.static HttpResponseStatus
SpdyHeaders.getStatus
(int spdyVersion, SpdyHeadersFrame frame) Returns theHttpResponseStatus
represented by the HTTP response status header.static String
SpdyHeaders.getUrl
(int spdyVersion, SpdyHeadersFrame frame) Returns the value of the URL path header.static HttpVersion
SpdyHeaders.getVersion
(int spdyVersion, SpdyHeadersFrame frame) Returns theHttpVersion
represented by the HTTP version header.static void
SpdyHeaders.removeHost
(SpdyHeadersFrame frame) Removes the SPDY host header.static void
SpdyHeaders.removeMethod
(int spdyVersion, SpdyHeadersFrame frame) Removes the HTTP method header.static void
SpdyHeaders.removeScheme
(int spdyVersion, SpdyHeadersFrame frame) Removes the URL scheme header.static void
SpdyHeaders.removeStatus
(int spdyVersion, SpdyHeadersFrame frame) Removes the HTTP response status header.static void
SpdyHeaders.removeUrl
(int spdyVersion, SpdyHeadersFrame frame) Removes the URL path header.static void
SpdyHeaders.removeVersion
(int spdyVersion, SpdyHeadersFrame frame) Removes the HTTP version header.static void
SpdyHeaders.setHeader
(SpdyHeadersFrame frame, String name, Iterable<?> values) Sets a new header with the specified name and values.static void
SpdyHeaders.setHeader
(SpdyHeadersFrame frame, String name, Object value) Sets a new header with the specified name and value.static void
SpdyHeaders.setHost
(SpdyHeadersFrame frame, String host) Set the SPDY host header.static void
SpdyHeaders.setMethod
(int spdyVersion, SpdyHeadersFrame frame, HttpMethod method) Sets the HTTP method header.static void
SpdyHeaders.setScheme
(int spdyVersion, SpdyHeadersFrame frame, String scheme) Sets the URL scheme header.static void
SpdyHeaders.setStatus
(int spdyVersion, SpdyHeadersFrame frame, HttpResponseStatus status) Sets the HTTP response status header.static void
SpdyHeaders.setUrl
(int spdyVersion, SpdyHeadersFrame frame, String path) Sets the URL path header.static void
SpdyHeaders.setVersion
(int spdyVersion, SpdyHeadersFrame frame, HttpVersion httpVersion) Sets the HTTP version header.