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