Package io.netty.handler.codec.spdy
Interface SpdyWindowUpdateFrame
- All Superinterfaces:
SpdyFrame
- All Known Implementing Classes:
DefaultSpdyWindowUpdateFrame
A SPDY Protocol WINDOW_UPDATE Frame
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the Delta-Window-Size of this frame.setDeltaWindowSize
(int deltaWindowSize) Sets the Delta-Window-Size of this frame.setStreamId
(int streamID) Sets the Stream-ID of this frame.int
streamId()
Returns the Stream-ID of this frame.
-
Method Details
-
streamId
int streamId()Returns the Stream-ID of this frame. -
setStreamId
Sets the Stream-ID of this frame. The Stream-ID cannot be negative. -
deltaWindowSize
int deltaWindowSize()Returns the Delta-Window-Size of this frame. -
setDeltaWindowSize
Sets the Delta-Window-Size of this frame. The Delta-Window-Size must be positive.
-