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()
Create a deep copy of this
ByteBufHolder. |
DefaultHttp2DataFrame |
duplicate()
Duplicate the
ByteBufHolder. |
boolean |
equals(Object o)
Returns
true if o has equal stream to this object. |
int |
hashCode() |
boolean |
isEndStream()
true if this frame is the last one in this direction of the stream. |
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 |
retain()
Increases the reference count by
1. |
DefaultHttp2DataFrame |
retain(int increment)
Increases the reference count by the specified
increment. |
DefaultHttp2DataFrame |
setStream(Object stream)
Set the stream identifier for this message.
|
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 additonal 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 sizepublic DefaultHttp2DataFrame setStream(Object stream)
Http2StreamFramesetStream in interface Http2DataFramesetStream in interface Http2StreamFramesetStream in class AbstractHttp2StreamFramethispublic boolean isEndStream()
Http2DataFrametrue if this frame is the last one in this direction of the stream.isEndStream in interface Http2DataFramepublic int padding()
Http2DataFramepadding in interface Http2DataFramepublic ByteBuf content()
Http2DataFramenull.content in interface ByteBufHoldercontent 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 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–2016 The Netty Project. All rights reserved.