Package io.netty.handler.codec.spdy
Interface SpdyWindowUpdateFrame
-
- All Superinterfaces:
SpdyFrame
- All Known Implementing Classes:
DefaultSpdyWindowUpdateFrame
public interface SpdyWindowUpdateFrame extends SpdyFrame
A SPDY Protocol WINDOW_UPDATE Frame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
deltaWindowSize()
Returns the Delta-Window-Size of this frame.SpdyWindowUpdateFrame
setDeltaWindowSize(int deltaWindowSize)
Sets the Delta-Window-Size of this frame.SpdyWindowUpdateFrame
setStreamId(int streamID)
Sets the Stream-ID of this frame.int
streamId()
Returns the Stream-ID of this frame.
-
-
-
Method Detail
-
streamId
int streamId()
Returns the Stream-ID of this frame.
-
setStreamId
SpdyWindowUpdateFrame setStreamId(int streamID)
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
SpdyWindowUpdateFrame setDeltaWindowSize(int deltaWindowSize)
Sets the Delta-Window-Size of this frame. The Delta-Window-Size must be positive.
-
-