Class DefaultSpdyGoAwayFrame

java.lang.Object
io.netty.handler.codec.spdy.DefaultSpdyGoAwayFrame
All Implemented Interfaces:
SpdyFrame, SpdyGoAwayFrame

public class DefaultSpdyGoAwayFrame extends Object implements SpdyGoAwayFrame
The default SpdyGoAwayFrame implementation.
  • Field Details

    • lastGoodStreamId

      private int lastGoodStreamId
    • status

      private SpdySessionStatus status
  • Constructor Details

    • DefaultSpdyGoAwayFrame

      public DefaultSpdyGoAwayFrame(int lastGoodStreamId)
      Creates a new instance.
      Parameters:
      lastGoodStreamId - the Last-good-stream-ID of this frame
    • DefaultSpdyGoAwayFrame

      public DefaultSpdyGoAwayFrame(int lastGoodStreamId, int statusCode)
      Creates a new instance.
      Parameters:
      lastGoodStreamId - the Last-good-stream-ID of this frame
      statusCode - the Status code of this frame
    • DefaultSpdyGoAwayFrame

      public DefaultSpdyGoAwayFrame(int lastGoodStreamId, SpdySessionStatus status)
      Creates a new instance.
      Parameters:
      lastGoodStreamId - the Last-good-stream-ID of this frame
      status - the status of this frame
  • Method Details