-
- All Superinterfaces:
Http2Frame
,Http2StreamFrame
- All Known Implementing Classes:
DefaultHttp2PriorityFrame
@UnstableApi public interface Http2PriorityFrame extends Http2StreamFrame
HTTP/2 Priority Frame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
exclusive()
Set totrue
if this stream is exclusive else set tofalse
Http2PriorityFrame
stream(Http2FrameStream stream)
Set theHttp2FrameStream
object for this frame.int
streamDependency()
Parent Stream Id of this Priority requestshort
weight()
Stream weight-
Methods inherited from interface io.netty5.handler.codec.http2.Http2Frame
name
-
Methods inherited from interface io.netty5.handler.codec.http2.Http2StreamFrame
stream
-
-
-
-
Method Detail
-
streamDependency
int streamDependency()
Parent Stream Id of this Priority request
-
weight
short weight()
Stream weight
-
exclusive
boolean exclusive()
Set totrue
if this stream is exclusive else set tofalse
-
stream
Http2PriorityFrame stream(Http2FrameStream stream)
Description copied from interface:Http2StreamFrame
Set theHttp2FrameStream
object for this frame.- Specified by:
stream
in interfaceHttp2StreamFrame
-
-