Interface SpdyWindowUpdateFrame
- All Superinterfaces:
SpdyFrame
- All Known Implementing Classes:
DefaultSpdyWindowUpdateFrame
A SPDY Protocol WINDOW_UPDATE Frame
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the Delta-Window-Size of this frame.intReturns the Stream-ID of this frame.voidsetDeltaWindowSize(int deltaWindowSize) Sets the Delta-Window-Size of this frame.voidsetStreamId(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.
-