Interface SpdyGoAwayFrame
-
- All Superinterfaces:
SpdyFrame
- All Known Implementing Classes:
DefaultSpdyGoAwayFrame
public interface SpdyGoAwayFrame extends SpdyFrame
A SPDY Protocol GOAWAY Frame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getLastGoodStreamId()
Returns the Last-good-stream-ID of this frame.SpdySessionStatus
getStatus()
Returns the status of this frame.void
setLastGoodStreamId(int lastGoodStreamId)
Sets the Last-good-stream-ID of this frame.void
setStatus(SpdySessionStatus status)
Sets the status of this frame.
-
-
-
Method Detail
-
getLastGoodStreamId
int getLastGoodStreamId()
Returns the Last-good-stream-ID of this frame.
-
setLastGoodStreamId
void setLastGoodStreamId(int lastGoodStreamId)
Sets the Last-good-stream-ID of this frame. The Last-good-stream-ID cannot be negative.
-
getStatus
SpdySessionStatus getStatus()
Returns the status of this frame.
-
setStatus
void setStatus(SpdySessionStatus status)
Sets the status of this frame.
-
-