Package io.netty.handler.codec.http2
Class DefaultHttp2WindowUpdateFrame
java.lang.Object
io.netty.handler.codec.http2.AbstractHttp2StreamFrame
io.netty.handler.codec.http2.DefaultHttp2WindowUpdateFrame
- All Implemented Interfaces:
Http2Frame
,Http2StreamFrame
,Http2WindowUpdateFrame
@UnstableApi
public class DefaultHttp2WindowUpdateFrame
extends AbstractHttp2StreamFrame
implements Http2WindowUpdateFrame
The default
Http2WindowUpdateFrame
implementation.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionname()
Returns the name of the HTTP/2 frame e.g.stream
(Http2FrameStream stream) Set theHttp2FrameStream
object for this frame.toString()
int
Number of bytes to increment the HTTP/2 stream's or connection's flow control window.Methods inherited from class io.netty.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.netty.handler.codec.http2.Http2StreamFrame
stream
-
Field Details
-
windowUpdateIncrement
private final int windowUpdateIncrement
-
-
Constructor Details
-
DefaultHttp2WindowUpdateFrame
public DefaultHttp2WindowUpdateFrame(int windowUpdateIncrement)
-
-
Method Details
-
stream
Description copied from interface:Http2StreamFrame
Set theHttp2FrameStream
object for this frame.- Specified by:
stream
in interfaceHttp2StreamFrame
- Overrides:
stream
in classAbstractHttp2StreamFrame
-
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
-
toString
-