Package org.eclipse.jetty.http2.frames
Class WindowUpdateFrame
- java.lang.Object
-
- org.eclipse.jetty.http2.frames.Frame
-
- org.eclipse.jetty.http2.frames.WindowUpdateFrame
-
public class WindowUpdateFrame extends Frame
-
-
Field Summary
Fields Modifier and Type Field Description private int
streamId
static int
WINDOW_UPDATE_LENGTH
private int
windowDelta
-
Fields inherited from class org.eclipse.jetty.http2.frames.Frame
DEFAULT_MAX_LENGTH, EMPTY_ARRAY, HEADER_LENGTH, MAX_MAX_LENGTH
-
-
Constructor Summary
Constructors Constructor Description WindowUpdateFrame(int streamId, int windowDelta)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getStreamId()
int
getWindowDelta()
java.lang.String
toString()
-
-
-
Field Detail
-
WINDOW_UPDATE_LENGTH
public static final int WINDOW_UPDATE_LENGTH
- See Also:
- Constant Field Values
-
streamId
private final int streamId
-
windowDelta
private final int windowDelta
-
-