public final class DefaultHttp2HeadersFrame extends AbstractHttp2StreamFrame implements Http2HeadersFrame
Http2HeadersFrame implementation.| Constructor and Description |
|---|
DefaultHttp2HeadersFrame (Http2Headers headers)
Equivalent to
new DefaultHttp2HeadersFrame(headers, false). |
DefaultHttp2HeadersFrame (Http2Headers headers,
boolean endStream)
Equivalent to
new DefaultHttp2HeadersFrame(headers, endStream, 0). |
DefaultHttp2HeadersFrame (Http2Headers headers,
boolean endStream,
int padding)
Construct a new headers message.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals (Object o)
Returns
true if o has equal stream to this object. |
int |
hashCode () |
Http2Headers |
headers ()
A complete header list.
|
boolean |
isEndStream ()
Returns
true if the END_STREAM flag is set. |
String |
name ()
Returns the name of the HTTP/2 frame e.g.
|
int |
padding ()
Frame padding to use.
|
DefaultHttp2HeadersFrame |
stream (Http2FrameStream stream)
Set the
Http2FrameStream object for this frame. |
String |
toString () |
stream clone, finalize, getClass, notify, notifyAll, wait, wait, wait stream public DefaultHttp2HeadersFrame(Http2Headers headers)
new DefaultHttp2HeadersFrame(headers, false).headers - the non-null headers to sendpublic DefaultHttp2HeadersFrame(Http2Headers headers, boolean endStream)
new DefaultHttp2HeadersFrame(headers, endStream, 0).headers - the non-null headers to sendpublic DefaultHttp2HeadersFrame(Http2Headers headers, boolean endStream, int padding)
headers - the non-null headers to sendendStream - whether these headers should terminate the streampadding - additional bytes that should be added to obscure the true content size. Must be between 0 and
256 (inclusive).public DefaultHttp2HeadersFrame stream(Http2FrameStream stream)
Http2StreamFrame Http2FrameStream object for this frame.stream in interface Http2StreamFrame stream in class AbstractHttp2StreamFrame public String name()
Http2Frame name in interface Http2Frame public Http2Headers headers()
Http2HeadersFrame headers in interface Http2HeadersFrame public boolean isEndStream()
Http2HeadersFrame true if the END_STREAM flag is set.isEndStream in interface Http2HeadersFrame public int padding()
Http2HeadersFrame padding in interface Http2HeadersFrame public boolean equals(Object o)
AbstractHttp2StreamFrame true if o has equal stream to this object.equals in class AbstractHttp2StreamFrame public int hashCode()
hashCode in class AbstractHttp2StreamFrame Copyright © 2008–2025 The Netty Project. All rights reserved.