Interface SpdyRstStreamFrame
-
- All Superinterfaces:
SpdyFrame
,SpdyStreamFrame
- All Known Implementing Classes:
DefaultSpdyRstStreamFrame
public interface SpdyRstStreamFrame extends SpdyStreamFrame
A SPDY Protocol RST_STREAM Frame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpdyStreamStatus
getStatus()
Returns the status of this frame.void
setStatus(SpdyStreamStatus status)
Sets the status of this frame.-
Methods inherited from interface org.jboss.netty.handler.codec.spdy.SpdyStreamFrame
getStreamId, isLast, setLast, setStreamId
-
-
-
-
Method Detail
-
getStatus
SpdyStreamStatus getStatus()
Returns the status of this frame.
-
setStatus
void setStatus(SpdyStreamStatus status)
Sets the status of this frame.
-
-