Package io.netty.handler.codec.spdy
Interface SpdyRstStreamFrame
- All Superinterfaces:
SpdyFrame
,SpdyStreamFrame
- All Known Implementing Classes:
DefaultSpdyRstStreamFrame
A SPDY Protocol RST_STREAM Frame
-
Method Summary
Modifier and TypeMethodDescriptionsetLast
(boolean last) Sets if this frame is the last frame to be transmitted on the stream.setStatus
(SpdyStreamStatus status) Sets the status of this frame.setStreamId
(int streamId) Sets the Stream-ID of this frame.status()
Returns the status of this frame.Methods inherited from interface io.netty.handler.codec.spdy.SpdyStreamFrame
isLast, streamId
-
Method Details
-
status
SpdyStreamStatus status()Returns the status of this frame. -
setStatus
Sets the status of this frame. -
setStreamId
Description copied from interface:SpdyStreamFrame
Sets the Stream-ID of this frame. The Stream-ID must be positive.- Specified by:
setStreamId
in interfaceSpdyStreamFrame
-
setLast
Description copied from interface:SpdyStreamFrame
Sets if this frame is the last frame to be transmitted on the stream.- Specified by:
setLast
in interfaceSpdyStreamFrame
-