Package io.netty.handler.codec.spdy
Interface SpdyStreamFrame
-
- All Superinterfaces:
SpdyFrame
- All Known Subinterfaces:
SpdyDataFrame
,SpdyHeadersFrame
,SpdyRstStreamFrame
,SpdySynReplyFrame
,SpdySynStreamFrame
- All Known Implementing Classes:
DefaultSpdyDataFrame
,DefaultSpdyHeadersFrame
,DefaultSpdyRstStreamFrame
,DefaultSpdyStreamFrame
,DefaultSpdySynReplyFrame
,DefaultSpdySynStreamFrame
public interface SpdyStreamFrame extends SpdyFrame
A SPDY Protocol Frame that is associated with an individual SPDY Stream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isLast()
Returnstrue
if this frame is the last frame to be transmitted on the stream.SpdyStreamFrame
setLast(boolean last)
Sets if this frame is the last frame to be transmitted on the stream.SpdyStreamFrame
setStreamId(int streamID)
Sets the Stream-ID of this frame.int
streamId()
Returns the Stream-ID of this frame.
-
-
-
Method Detail
-
streamId
int streamId()
Returns the Stream-ID of this frame.
-
setStreamId
SpdyStreamFrame setStreamId(int streamID)
Sets the Stream-ID of this frame. The Stream-ID must be positive.
-
isLast
boolean isLast()
Returnstrue
if this frame is the last frame to be transmitted on the stream.
-
setLast
SpdyStreamFrame setLast(boolean last)
Sets if this frame is the last frame to be transmitted on the stream.
-
-