Module io.netty.codec.http2
Package io.netty5.handler.codec.http2
Class DefaultHttp2WindowUpdateFrame
- java.lang.Object
-
- io.netty5.handler.codec.http2.AbstractHttp2StreamFrame
-
- io.netty5.handler.codec.http2.DefaultHttp2WindowUpdateFrame
-
- All Implemented Interfaces:
Http2Frame
,Http2StreamFrame
,Http2WindowUpdateFrame
@UnstableApi public class DefaultHttp2WindowUpdateFrame extends AbstractHttp2StreamFrame implements Http2WindowUpdateFrame
The defaultHttp2WindowUpdateFrame
implementation.
-
-
Constructor Summary
Constructors Constructor Description DefaultHttp2WindowUpdateFrame(int windowUpdateIncrement)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
name()
Returns the name of the HTTP/2 frame e.g.DefaultHttp2WindowUpdateFrame
stream(Http2FrameStream stream)
Set theHttp2FrameStream
object for this frame.String
toString()
int
windowSizeIncrement()
Number of bytes to increment the HTTP/2 stream's or connection's flow control window.-
Methods inherited from class io.netty5.handler.codec.http2.AbstractHttp2StreamFrame
equals, hashCode, stream
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.netty5.handler.codec.http2.Http2StreamFrame
stream
-
-
-
-
Method Detail
-
stream
public DefaultHttp2WindowUpdateFrame stream(Http2FrameStream stream)
Description copied from interface:Http2StreamFrame
Set theHttp2FrameStream
object for this frame.- Specified by:
stream
in interfaceHttp2StreamFrame
- Overrides:
stream
in classAbstractHttp2StreamFrame
-
name
public String name()
Description copied from interface:Http2Frame
Returns the name of the HTTP/2 frame e.g. DATA, GOAWAY, etc.- Specified by:
name
in interfaceHttp2Frame
-
windowSizeIncrement
public int windowSizeIncrement()
Description copied from interface:Http2WindowUpdateFrame
Number of bytes to increment the HTTP/2 stream's or connection's flow control window.- Specified by:
windowSizeIncrement
in interfaceHttp2WindowUpdateFrame
-
-