Package io.netty.handler.codec.spdy
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
lastGoodStreamId()
Returns the Last-good-stream-ID of this frame.SpdyGoAwayFrame
setLastGoodStreamId(int lastGoodStreamId)
Sets the Last-good-stream-ID of this frame.SpdyGoAwayFrame
setStatus(SpdySessionStatus status)
Sets the status of this frame.SpdySessionStatus
status()
Returns the status of this frame.
-
-
-
Method Detail
-
lastGoodStreamId
int lastGoodStreamId()
Returns the Last-good-stream-ID of this frame.
-
setLastGoodStreamId
SpdyGoAwayFrame setLastGoodStreamId(int lastGoodStreamId)
Sets the Last-good-stream-ID of this frame. The Last-good-stream-ID cannot be negative.
-
status
SpdySessionStatus status()
Returns the status of this frame.
-
setStatus
SpdyGoAwayFrame setStatus(SpdySessionStatus status)
Sets the status of this frame.
-
-