public interface SpdyUnknownFrame extends SpdyFrame, ByteBufHolder
Modifier and Type | Method and Description |
---|---|
SpdyUnknownFrame |
copy()
Creates a deep copy of this
ByteBufHolder . |
SpdyUnknownFrame |
duplicate()
Duplicates this
ByteBufHolder . |
byte |
flags() |
int |
frameType() |
SpdyUnknownFrame |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
SpdyUnknownFrame |
retain()
Increases the reference count by
1 . |
SpdyUnknownFrame |
retain(int increment)
Increases the reference count by the specified
increment . |
SpdyUnknownFrame |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
SpdyUnknownFrame |
touch()
Records the current access location of this object for debugging purposes.
|
SpdyUnknownFrame |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
content
refCnt, release, release
int frameType()
byte flags()
SpdyUnknownFrame copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
SpdyUnknownFrame duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
SpdyUnknownFrame retainedDuplicate()
ByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.retainedDuplicate
in interface ByteBufHolder
ByteBuf.retainedDuplicate()
SpdyUnknownFrame replace(ByteBuf content)
ByteBufHolder
ByteBufHolder
which contains the specified content
.replace
in interface ByteBufHolder
SpdyUnknownFrame retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
SpdyUnknownFrame retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
SpdyUnknownFrame touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface ReferenceCounted
SpdyUnknownFrame touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface ReferenceCounted
Copyright © 2008–2024 The Netty Project. All rights reserved.