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
getDeltaWindowSize()
Returns the Delta-Window-Size of this frame.int
getStreamId()
Returns the Stream-ID of this frame.void
setDeltaWindowSize(int deltaWindowSize)
Sets the Delta-Window-Size of this frame.void
setStreamId(int streamId)
Sets the Stream-ID of this frame.
-
-
-
Method Detail
-
getStreamId
int getStreamId()
Returns the Stream-ID of this frame.
-
setStreamId
void setStreamId(int streamId)
Sets the Stream-ID of this frame. The Stream-ID cannot be negative.
-
getDeltaWindowSize
int getDeltaWindowSize()
Returns the Delta-Window-Size of this frame.
-
setDeltaWindowSize
void setDeltaWindowSize(int deltaWindowSize)
Sets the Delta-Window-Size of this frame. The Delta-Window-Size must be positive.
-
-