Package io.netty.handler.codec.http3
Interface Http3UnknownFrame
-
- All Superinterfaces:
io.netty.buffer.ByteBufHolder,Http3ControlStreamFrame,Http3Frame,Http3PushStreamFrame,Http3RequestStreamFrame,io.netty.util.ReferenceCounted
- All Known Implementing Classes:
DefaultHttp3UnknownFrame
public interface Http3UnknownFrame extends Http3RequestStreamFrame, Http3PushStreamFrame, Http3ControlStreamFrame, io.netty.buffer.ByteBufHolder
Unknown HTTP3 frame. These frames are valid on all stream types.HTTP/3 Frame Format { Type (i), Length (i), Frame Payload (..), }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Http3UnknownFramecopy()Http3UnknownFrameduplicate()default longlength()Return the payload length of the frame.Http3UnknownFramereplace(io.netty.buffer.ByteBuf content)Http3UnknownFrameretain()Http3UnknownFrameretain(int increment)Http3UnknownFrameretainedDuplicate()Http3UnknownFrametouch()Http3UnknownFrametouch(Object hint)-
Methods inherited from interface io.netty.handler.codec.http3.Http3Frame
type
-
-
-
-
Method Detail
-
length
default long length()
Return the payload length of the frame.- Returns:
- the length.
-
copy
Http3UnknownFrame copy()
- Specified by:
copyin interfaceio.netty.buffer.ByteBufHolder
-
duplicate
Http3UnknownFrame duplicate()
- Specified by:
duplicatein interfaceio.netty.buffer.ByteBufHolder
-
retainedDuplicate
Http3UnknownFrame retainedDuplicate()
- Specified by:
retainedDuplicatein interfaceio.netty.buffer.ByteBufHolder
-
replace
Http3UnknownFrame replace(io.netty.buffer.ByteBuf content)
- Specified by:
replacein interfaceio.netty.buffer.ByteBufHolder
-
retain
Http3UnknownFrame retain()
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
retain
Http3UnknownFrame retain(int increment)
- Specified by:
retainin interfaceio.netty.buffer.ByteBufHolder- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
touch
Http3UnknownFrame touch()
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
touch
Http3UnknownFrame touch(Object hint)
- Specified by:
touchin interfaceio.netty.buffer.ByteBufHolder- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
-