public final class DefaultHttp2DataFrame extends AbstractHttp2StreamFrame implements Http2DataFrame
Http2DataFrame implementation.| Constructor and Description |
|---|
DefaultHttp2DataFrame(boolean endStream)
Equivalent to
new DefaultHttp2DataFrame(Unpooled.EMPTY_BUFFER, endStream). |
DefaultHttp2DataFrame(ByteBuf content)
Equivalent to
new DefaultHttp2DataFrame(content, false). |
DefaultHttp2DataFrame(ByteBuf content,
boolean endStream)
Equivalent to
new DefaultHttp2DataFrame(content, endStream, 0). |
DefaultHttp2DataFrame(ByteBuf content,
boolean endStream,
int padding)
Construct a new data message.
|
| Modifier and Type | Method and Description |
|---|---|
ByteBuf |
content()
Payload of DATA frame.
|
DefaultHttp2DataFrame |
copy()
Creates a deep copy of this
ByteBufHolder. |
DefaultHttp2DataFrame |
duplicate()
Duplicates this
ByteBufHolder. |
boolean |
equals(Object o)
Returns
true if o has equal stream to this object. |
int |
hashCode() |
int |
initialFlowControlledBytes()
Returns the number of bytes that are flow-controlled initially, so even if the
Http2DataFrame.content() is consumed
this will not change. |
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.
|
int |
refCnt()
Returns the reference count of this object.
|
boolean |
release()
Decreases the reference count by
1 and deallocates this object if the reference count reaches at
0. |
boolean |
release(int decrement)
Decreases the reference count by the specified
decrement and deallocates this object if the reference
count reaches at 0. |
DefaultHttp2DataFrame |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content. |
DefaultHttp2DataFrame |
retain()
Increases the reference count by
1. |
DefaultHttp2DataFrame |
retain(int increment)
Increases the reference count by the specified
increment. |
DefaultHttp2DataFrame |
retainedDuplicate()
Duplicates this
ByteBufHolder. |
DefaultHttp2DataFrame |
stream(Http2FrameStream stream)
Set the
Http2FrameStream object for this frame. |
String |
toString() |
DefaultHttp2DataFrame |
touch()
Records the current access location of this object for debugging purposes.
|
DefaultHttp2DataFrame |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
streamclone, finalize, getClass, notify, notifyAll, wait, wait, waitstreampublic DefaultHttp2DataFrame(ByteBuf content)
new DefaultHttp2DataFrame(content, false).content - non-null payloadpublic DefaultHttp2DataFrame(boolean endStream)
new DefaultHttp2DataFrame(Unpooled.EMPTY_BUFFER, endStream).endStream - whether this data should terminate the streampublic DefaultHttp2DataFrame(ByteBuf content, boolean endStream)
new DefaultHttp2DataFrame(content, endStream, 0).content - non-null payloadendStream - whether this data should terminate the streampublic DefaultHttp2DataFrame(ByteBuf content, boolean endStream, int padding)
content - non-null payloadendStream - whether this data should terminate the streampadding - additional bytes that should be added to obscure the true content size. Must be between 0 and
256 (inclusive).public DefaultHttp2DataFrame stream(Http2FrameStream stream)
Http2StreamFrameHttp2FrameStream object for this frame.stream in interface Http2StreamFramestream in class AbstractHttp2StreamFramepublic String name()
Http2Framename in interface Http2Framepublic boolean isEndStream()
Http2DataFrametrue if the END_STREAM flag is set.isEndStream in interface Http2DataFramepublic int padding()
Http2DataFramepadding in interface Http2DataFramepublic ByteBuf content()
Http2DataFramenull.content in interface ByteBufHoldercontent in interface Http2DataFramepublic int initialFlowControlledBytes()
Http2DataFrameHttp2DataFrame.content() is consumed
this will not change.initialFlowControlledBytes in interface Http2DataFramepublic DefaultHttp2DataFrame copy()
ByteBufHolderByteBufHolder.copy in interface ByteBufHoldercopy in interface Http2DataFramepublic DefaultHttp2DataFrame duplicate()
ByteBufHolderByteBufHolder. Be aware that this will not automatically call ByteBufHolder.retain().duplicate in interface ByteBufHolderduplicate in interface Http2DataFramepublic DefaultHttp2DataFrame retainedDuplicate()
ByteBufHolderByteBufHolder. This method returns a retained duplicate unlike ByteBufHolder.duplicate().retainedDuplicate in interface ByteBufHolderretainedDuplicate in interface Http2DataFrameByteBuf.retainedDuplicate()public DefaultHttp2DataFrame replace(ByteBuf content)
ByteBufHolderByteBufHolder which contains the specified content.replace in interface ByteBufHolderreplace in interface Http2DataFramepublic int refCnt()
ReferenceCounted0, it means this object has been deallocated.refCnt in interface ReferenceCountedpublic boolean release()
ReferenceCounted1 and deallocates this object if the reference count reaches at
0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounteddecrement and deallocates this object if the reference
count reaches at 0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic DefaultHttp2DataFrame retain()
ReferenceCounted1.retain in interface ByteBufHolderretain in interface Http2DataFrameretain in interface ReferenceCountedpublic DefaultHttp2DataFrame retain(int increment)
ReferenceCountedincrement.retain in interface ByteBufHolderretain in interface Http2DataFrameretain in interface ReferenceCountedpublic DefaultHttp2DataFrame touch()
ReferenceCountedResourceLeakDetector. This method is a shortcut to touch(null).touch in interface ByteBufHoldertouch in interface Http2DataFrametouch in interface ReferenceCountedpublic DefaultHttp2DataFrame touch(Object hint)
ReferenceCountedResourceLeakDetector.touch in interface ByteBufHoldertouch in interface Http2DataFrametouch in interface ReferenceCountedpublic 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.