Package io.netty.handler.codec.spdy
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 SpdyRstStreamFrame
setLast(boolean last)
Sets if this frame is the last frame to be transmitted on the stream.SpdyRstStreamFrame
setStatus(SpdyStreamStatus status)
Sets the status of this frame.SpdyRstStreamFrame
setStreamId(int streamId)
Sets the Stream-ID of this frame.SpdyStreamStatus
status()
Returns the status of this frame.-
Methods inherited from interface io.netty.handler.codec.spdy.SpdyStreamFrame
isLast, streamId
-
-
-
-
Method Detail
-
status
SpdyStreamStatus status()
Returns the status of this frame.
-
setStatus
SpdyRstStreamFrame setStatus(SpdyStreamStatus status)
Sets the status of this frame.
-
setStreamId
SpdyRstStreamFrame setStreamId(int streamId)
Description copied from interface:SpdyStreamFrame
Sets the Stream-ID of this frame. The Stream-ID must be positive.- Specified by:
setStreamId
in interfaceSpdyStreamFrame
-
setLast
SpdyRstStreamFrame setLast(boolean last)
Description copied from interface:SpdyStreamFrame
Sets if this frame is the last frame to be transmitted on the stream.- Specified by:
setLast
in interfaceSpdyStreamFrame
-
-