Class DefaultSpdyStreamFrame

java.lang.Object
org.jboss.netty.handler.codec.spdy.DefaultSpdyStreamFrame
All Implemented Interfaces:
SpdyFrame, SpdyStreamFrame
Direct Known Subclasses:
DefaultSpdyDataFrame, DefaultSpdyHeadersFrame, DefaultSpdyRstStreamFrame

public abstract class DefaultSpdyStreamFrame extends Object implements SpdyStreamFrame
The default SpdyStreamFrame implementation.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private boolean
     
    private int
     
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    DefaultSpdyStreamFrame(int streamId)
    Creates a new instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the Stream-ID of this frame.
    boolean
    Returns true if this frame is the last frame to be transmitted on the stream.
    void
    setLast(boolean last)
    Sets if this frame is the last frame to be transmitted on the stream.
    void
    setStreamId(int streamId)
    Sets the Stream-ID of this frame.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • streamId

      private int streamId
    • last

      private boolean last
  • Constructor Details

    • DefaultSpdyStreamFrame

      protected DefaultSpdyStreamFrame(int streamId)
      Creates a new instance.
      Parameters:
      streamId - the Stream-ID of this frame
  • Method Details

    • getStreamId

      public int getStreamId()
      Description copied from interface: SpdyStreamFrame
      Returns the Stream-ID of this frame.
      Specified by:
      getStreamId in interface SpdyStreamFrame
    • setStreamId

      public void 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 interface SpdyStreamFrame
    • isLast

      public boolean isLast()
      Description copied from interface: SpdyStreamFrame
      Returns true if this frame is the last frame to be transmitted on the stream.
      Specified by:
      isLast in interface SpdyStreamFrame
    • setLast

      public void 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 interface SpdyStreamFrame