@UnstableApi 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()
true if this frame is the last one in this direction of the stream. |
String |
name()
Returns the name of the HTTP/2 frame e.g.
|
int |
padding()
Frame padding to use.
|
DefaultHttp2HeadersFrame |
streamId(int streamId)
Sets the identifier of the stream this frame applies to.
|
String |
toString() |
streamId
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
streamId
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 streamId(int streamId)
Http2StreamFrame
NOTE: This method is supposed to be called by the HTTP/2 transport only. It must not be called by users.
streamId
in interface Http2StreamFrame
streamId
in class AbstractHttp2StreamFrame
this
public String name()
Http2Frame
name
in interface Http2Frame
public Http2Headers headers()
Http2HeadersFrame
headers
in interface Http2HeadersFrame
public boolean isEndStream()
Http2HeadersFrame
true
if this frame is the last one in this direction of the stream.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–2017 The Netty Project. All rights reserved.