final class ComposedLastHttpContent extends java.lang.Object implements LastHttpContent
Modifier and Type | Field and Description |
---|---|
private DecoderResult |
result |
private HttpHeaders |
trailingHeaders |
EMPTY_LAST_CONTENT
Constructor and Description |
---|
ComposedLastHttpContent(HttpHeaders trailingHeaders) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder . |
LastHttpContent |
copy()
Creates a deep copy of this
ByteBufHolder . |
DecoderResult |
decoderResult()
Returns the result of decoding this object.
|
LastHttpContent |
duplicate()
Duplicates this
ByteBufHolder . |
DecoderResult |
getDecoderResult() |
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 . |
LastHttpContent |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
LastHttpContent |
retain()
Increases the reference count by
1 . |
LastHttpContent |
retain(int increment)
Increases the reference count by the specified
increment . |
LastHttpContent |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
void |
setDecoderResult(DecoderResult result)
Updates the result of decoding this object.
|
LastHttpContent |
touch()
Records the current access location of this object for debugging purposes.
|
LastHttpContent |
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
HttpHeaders |
trailingHeaders() |
private final HttpHeaders trailingHeaders
private DecoderResult result
ComposedLastHttpContent(HttpHeaders trailingHeaders)
public HttpHeaders trailingHeaders()
trailingHeaders
in interface LastHttpContent
public LastHttpContent copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
copy
in interface HttpContent
copy
in interface LastHttpContent
public LastHttpContent duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
duplicate
in interface HttpContent
duplicate
in interface LastHttpContent
public LastHttpContent retainedDuplicate()
ByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.retainedDuplicate
in interface ByteBufHolder
retainedDuplicate
in interface HttpContent
retainedDuplicate
in interface LastHttpContent
ByteBuf.retainedDuplicate()
public LastHttpContent replace(ByteBuf content)
ByteBufHolder
ByteBufHolder
which contains the specified content
.replace
in interface ByteBufHolder
replace
in interface HttpContent
replace
in interface LastHttpContent
public LastHttpContent retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface HttpContent
retain
in interface LastHttpContent
retain
in interface ReferenceCounted
public LastHttpContent retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface HttpContent
retain
in interface LastHttpContent
retain
in interface ReferenceCounted
public LastHttpContent touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface HttpContent
touch
in interface LastHttpContent
touch
in interface ReferenceCounted
public LastHttpContent touch(java.lang.Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface HttpContent
touch
in interface LastHttpContent
touch
in interface ReferenceCounted
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public DecoderResult decoderResult()
DecoderResultProvider
decoderResult
in interface DecoderResultProvider
public DecoderResult getDecoderResult()
getDecoderResult
in interface HttpObject
public void setDecoderResult(DecoderResult result)
DecoderResultProvider
setDecoderResult
in interface DecoderResultProvider
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
in interface ReferenceCounted
public boolean release()
ReferenceCounted
1
and deallocates this object if the reference count reaches at
0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounted
decrement
and deallocates this object if the reference
count reaches at 0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocated