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
public class DefaultHttp2WindowUpdateFrame extends AbstractHttp2StreamFrame implements Http2WindowUpdateFrame
The defaultHttp2WindowUpdateFrameimplementation.
-
-
Constructor Summary
Constructors Constructor Description DefaultHttp2WindowUpdateFrame(int windowUpdateIncrement)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringname()Returns the name of the HTTP/2 frame e.g.DefaultHttp2WindowUpdateFramestream(Http2FrameStream stream)Set theHttp2FrameStreamobject for this frame.java.lang.StringtoString()intwindowSizeIncrement()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
-
-
-
-
Method Detail
-
stream
public DefaultHttp2WindowUpdateFrame stream(Http2FrameStream stream)
Description copied from interface:Http2StreamFrameSet theHttp2FrameStreamobject for this frame.- Specified by:
streamin interfaceHttp2StreamFrame- Overrides:
streamin classAbstractHttp2StreamFrame
-
name
public java.lang.String name()
Description copied from interface:Http2FrameReturns the name of the HTTP/2 frame e.g. DATA, GOAWAY, etc.- Specified by:
namein interfaceHttp2Frame
-
windowSizeIncrement
public int windowSizeIncrement()
Description copied from interface:Http2WindowUpdateFrameNumber of bytes to increment the HTTP/2 stream's or connection's flow control window.- Specified by:
windowSizeIncrementin interfaceHttp2WindowUpdateFrame
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-