public class DefaultStompContentSubframe extends Object implements StompContentSubframe
StompContentSubframe
implementation.Constructor and Description |
---|
DefaultStompContentSubframe(ByteBuf content) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder . |
StompContentSubframe |
copy()
Create a deep copy of this
ByteBufHolder . |
DecoderResult |
decoderResult()
Returns the result of decoding this object.
|
StompContentSubframe |
duplicate()
Duplicate the
ByteBufHolder . |
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 . |
StompContentSubframe |
retain()
Increases the reference count by
1 . |
StompContentSubframe |
retain(int increment)
Increases the reference count by the specified
increment . |
void |
setDecoderResult(DecoderResult decoderResult)
Updates the result of decoding this object.
|
String |
toString() |
StompContentSubframe |
touch()
Records the current access location of this object for debugging purposes.
|
StompContentSubframe |
touch(Object hint)
Records the current access location of this object with an additonal arbitrary information for debugging
purposes.
|
public DefaultStompContentSubframe(ByteBuf content)
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public StompContentSubframe copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
copy
in interface StompContentSubframe
public StompContentSubframe duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
duplicate
in interface StompContentSubframe
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
in interface ReferenceCounted
public StompContentSubframe retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface StompContentSubframe
retain
in interface ReferenceCounted
public StompContentSubframe retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface StompContentSubframe
retain
in interface ReferenceCounted
public StompContentSubframe touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface StompContentSubframe
touch
in interface ReferenceCounted
public StompContentSubframe touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface StompContentSubframe
touch
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 deallocatedpublic DecoderResult decoderResult()
DecoderResultProvider
decoderResult
in interface DecoderResultProvider
public void setDecoderResult(DecoderResult decoderResult)
DecoderResultProvider
setDecoderResult
in interface DecoderResultProvider
Copyright © 2008–2015 The Netty Project. All rights reserved.