Package | Description |
---|---|
org.jboss.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SpdyHeadersFrame
A SPDY Protocol HEADERS Control Frame
|
interface |
SpdySynReplyFrame
A SPDY Protocol SYN_REPLY Control Frame
|
interface |
SpdySynStreamFrame
A SPDY Protocol SYN_STREAM Control Frame
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultSpdyHeaderBlock
The default
SpdyHeaderBlock implementation. |
class |
DefaultSpdyHeadersFrame
The default
SpdyHeadersFrame implementation. |
class |
DefaultSpdySynReplyFrame
The default
SpdySynReplyFrame implementation. |
class |
DefaultSpdySynStreamFrame
The default
SpdySynStreamFrame implementation. |
Modifier and Type | Method and Description |
---|---|
static void |
SpdyHeaders.addHeader(SpdyHeaderBlock block,
String name,
Object value)
Adds a new header with the specified name and value.
|
static String |
SpdyHeaders.getHeader(SpdyHeaderBlock block,
String name)
Returns the header value with the specified header name.
|
static String |
SpdyHeaders.getHeader(SpdyHeaderBlock block,
String name,
String defaultValue)
Returns the header value with the specified header name.
|
static String |
SpdyHeaders.getHost(SpdyHeaderBlock block)
Returns the SPDY host header.
|
static HttpMethod |
SpdyHeaders.getMethod(int spdyVersion,
SpdyHeaderBlock block)
Returns the
HttpMethod represented by the HTTP method header. |
static HttpMethod |
SpdyHeaders.getMethod(SpdyHeaderBlock block)
Deprecated.
|
static String |
SpdyHeaders.getScheme(int spdyVersion,
SpdyHeaderBlock block)
Returns the value of the URL scheme header.
|
static String |
SpdyHeaders.getScheme(SpdyHeaderBlock block)
Deprecated.
|
static HttpResponseStatus |
SpdyHeaders.getStatus(int spdyVersion,
SpdyHeaderBlock block)
Returns the
HttpResponseStatus represented by the HTTP response status header. |
static HttpResponseStatus |
SpdyHeaders.getStatus(SpdyHeaderBlock block)
Deprecated.
|
static String |
SpdyHeaders.getUrl(int spdyVersion,
SpdyHeaderBlock block)
Returns the value of the URL path header.
|
static String |
SpdyHeaders.getUrl(SpdyHeaderBlock block)
Deprecated.
|
static HttpVersion |
SpdyHeaders.getVersion(int spdyVersion,
SpdyHeaderBlock block)
Returns the
HttpVersion represented by the HTTP version header. |
static HttpVersion |
SpdyHeaders.getVersion(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.removeHost(SpdyHeaderBlock block)
Removes the SPDY host header.
|
static void |
SpdyHeaders.removeMethod(int spdyVersion,
SpdyHeaderBlock block)
Removes the HTTP method header.
|
static void |
SpdyHeaders.removeMethod(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.removeScheme(int spdyVersion,
SpdyHeaderBlock block)
Removes the URL scheme header.
|
static void |
SpdyHeaders.removeScheme(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.removeStatus(int spdyVersion,
SpdyHeaderBlock block)
Removes the HTTP response status header.
|
static void |
SpdyHeaders.removeStatus(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.removeUrl(int spdyVersion,
SpdyHeaderBlock block)
Removes the URL path header.
|
static void |
SpdyHeaders.removeUrl(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.removeVersion(int spdyVersion,
SpdyHeaderBlock block)
Removes the HTTP version header.
|
static void |
SpdyHeaders.removeVersion(SpdyHeaderBlock block)
Deprecated.
|
static void |
SpdyHeaders.setHeader(SpdyHeaderBlock block,
String name,
Iterable<?> values)
Sets a new header with the specified name and values.
|
static void |
SpdyHeaders.setHeader(SpdyHeaderBlock block,
String name,
Object value)
Sets a new header with the specified name and value.
|
static void |
SpdyHeaders.setHost(SpdyHeaderBlock block,
String host)
Set the SPDY host header.
|
static void |
SpdyHeaders.setMethod(int spdyVersion,
SpdyHeaderBlock block,
HttpMethod method)
Sets the HTTP method header.
|
static void |
SpdyHeaders.setMethod(SpdyHeaderBlock block,
HttpMethod method)
Deprecated.
|
static void |
SpdyHeaders.setScheme(int spdyVersion,
SpdyHeaderBlock block,
String scheme)
Sets the URL scheme header.
|
static void |
SpdyHeaders.setScheme(SpdyHeaderBlock block,
String scheme)
Deprecated.
|
static void |
SpdyHeaders.setStatus(int spdyVersion,
SpdyHeaderBlock block,
HttpResponseStatus status)
Sets the HTTP response status header.
|
static void |
SpdyHeaders.setStatus(SpdyHeaderBlock block,
HttpResponseStatus status)
Deprecated.
|
static void |
SpdyHeaders.setUrl(int spdyVersion,
SpdyHeaderBlock block,
String path)
Sets the URL path header.
|
static void |
SpdyHeaders.setUrl(SpdyHeaderBlock block,
String path)
Deprecated.
|
static void |
SpdyHeaders.setVersion(int spdyVersion,
SpdyHeaderBlock block,
HttpVersion httpVersion)
Sets the HTTP version header.
|
static void |
SpdyHeaders.setVersion(SpdyHeaderBlock block,
HttpVersion httpVersion)
Deprecated.
|
Copyright © 2008-2014 The Netty Project. All Rights Reserved.