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() |
streamclone, finalize, getClass, notify, notifyAll, wait, wait, waitstreampublic 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)
Http2StreamFrameHttp2FrameStream object for this frame.stream in interface Http2StreamFramestream in class AbstractHttp2StreamFramepublic String name()
Http2Framename in interface Http2Framepublic Http2Headers headers()
Http2HeadersFrameheaders in interface Http2HeadersFramepublic boolean isEndStream()
Http2HeadersFrametrue if the END_STREAM flag is set.isEndStream in interface Http2HeadersFramepublic int padding()
Http2HeadersFramepadding in interface Http2HeadersFramepublic boolean equals(Object o)
AbstractHttp2StreamFrametrue if o has equal stream to this object.equals in class AbstractHttp2StreamFramepublic int hashCode()
hashCode in class AbstractHttp2StreamFrameCopyright © 2008–2025 The Netty Project. All rights reserved.