Package | Description |
---|---|
io.netty.handler.codec |
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.
|
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
io.netty.handler.codec.stomp |
STOMP codec
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultHeaders<K,V,T extends Headers<K,V,T>>
Default implementation of
Headers ; |
class |
EmptyHeaders<K,V,T extends Headers<K,V,T>> |
interface |
Headers<K,V,T extends Headers<K,V,T>>
Common interface for
Headers which represents a mapping of key to value. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultHeaders<K,V,T extends Headers<K,V,T>>
Default implementation of
Headers ; |
class |
DefaultHeadersImpl<K,V>
A concrete implementation of
DefaultHeaders that allows for direct instantiation. |
class |
EmptyHeaders<K,V,T extends Headers<K,V,T>> |
Modifier and Type | Method and Description |
---|---|
T |
DefaultHeaders.add(Headers<? extends K,? extends V,?> headers) |
T |
Headers.add(Headers<? extends K,? extends V,?> headers)
Adds all header names and values of
headers to this object. |
T |
EmptyHeaders.add(Headers<? extends K,? extends V,?> headers) |
protected void |
DefaultHeaders.addImpl(Headers<? extends K,? extends V,?> headers) |
boolean |
DefaultHeaders.equals(Headers<K,V,?> h2,
HashingStrategy<V> valueHashingStrategy)
Test this object for equality against
h2 . |
static <K,V> List<String> |
HeadersUtils.getAllAsString(Headers<K,V,?> headers,
K name)
|
static <K,V> String |
HeadersUtils.getAsString(Headers<K,V,?> headers,
K name)
get(Object) and convert the result to a String . |
static Set<String> |
HeadersUtils.namesAsString(Headers<CharSequence,CharSequence,?> headers)
|
T |
DefaultHeaders.set(Headers<? extends K,? extends V,?> headers) |
T |
Headers.set(Headers<? extends K,? extends V,?> headers)
Clears the current header entries and copies all header entries of the specified
headers . |
T |
EmptyHeaders.set(Headers<? extends K,? extends V,?> headers) |
T |
DefaultHeaders.setAll(Headers<? extends K,? extends V,?> headers) |
T |
Headers.setAll(Headers<? extends K,? extends V,?> headers)
Retains all current headers but calls
#set(K, V) for each entry in headers . |
T |
EmptyHeaders.setAll(Headers<? extends K,? extends V,?> headers) |
Modifier and Type | Method and Description |
---|---|
Headers<CharSequence,CharSequence,?> |
DefaultHttpHeaders.unwrap() |
Modifier and Type | Interface and Description |
---|---|
interface |
Http2Headers
A collection of headers sent or received via HTTP/2.
|
Modifier and Type | Class and Description |
---|---|
class |
CharSequenceMap<V>
Internal use only!
|
class |
DefaultHttp2Headers |
class |
EmptyHttp2Headers |
class |
ReadOnlyHttp2Headers
A variant of
Http2Headers which only supports read-only methods. |
Modifier and Type | Method and Description |
---|---|
Http2Headers |
ReadOnlyHttp2Headers.add(Headers<? extends CharSequence,? extends CharSequence,?> headers) |
Http2Headers |
ReadOnlyHttp2Headers.set(Headers<? extends CharSequence,? extends CharSequence,?> headers) |
Http2Headers |
ReadOnlyHttp2Headers.setAll(Headers<? extends CharSequence,? extends CharSequence,?> headers) |
Modifier and Type | Interface and Description |
---|---|
interface |
SpdyHeaders
Provides the constants for the standard SPDY HTTP header names and commonly
used utility methods that access a
SpdyHeadersFrame . |
Modifier and Type | Class and Description |
---|---|
class |
DefaultSpdyHeaders |
Modifier and Type | Interface and Description |
---|---|
interface |
StompHeaders
The multimap data structure for the STOMP header names and values.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultStompHeaders |
Copyright © 2008–2024 The Netty Project. All rights reserved.