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.int
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 Details
-
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.
-