org.http4s.blaze.http

spdy

package spdy

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. spdy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait ControlFrame extends SpdyFrame

  2. case class DataFrame(data: ByteBuffer, streamid: Int, isLast: Boolean) extends StreamFrame with Product with Serializable

  3. case class GoAwayFrame(lastGoodStream: Int, code: GoAwayCode) extends ControlFrame with Product with Serializable

  4. case class HeadersFrame(streamid: Int, headers: Map[String, Seq[String]], isLast: Boolean) extends ControlFrame with StreamFrame with Product with Serializable

  5. case class PingFrame(id: Int) extends ControlFrame with Product with Serializable

  6. class ProtocolException extends SpdyException

  7. case class RstStreamFrame(streamid: Int, code: RstCode) extends ControlFrame with StreamFrame with Product with Serializable

  8. final case class Setting(flags: Int, id: SettingID, value: Array[Byte]) extends Product with Serializable

  9. case class SettingsFrame(settings: Seq[Setting], clear: Boolean) extends ControlFrame with Product with Serializable

  10. class Spdy3_1FrameCodec extends ByteToObjectStage[SpdyFrame] with SpdyDecoderMethods with SpdyEncoderMethods

  11. abstract class SpdyException extends Exception

  12. sealed trait SpdyFrame extends AnyRef

  13. class SpdyHeaderDecoder extends AnyRef

  14. class SpdyHeaderEncoder extends AnyRef

  15. sealed trait StreamFrame extends SpdyFrame

  16. case class SynReplyFrame(streamid: Int, headers: Map[String, Seq[String]], isLast: Boolean) extends ControlFrame with StreamFrame with Product with Serializable

  17. case class SynStreamFrame(streamid: Int, headers: Map[String, Seq[String]], isLast: Boolean, associatedStream: Int = 0, unidirectional: Boolean = false, priority: Int = 7) extends ControlFrame with StreamFrame with Product with Serializable

  18. case class WindowUpdateFrame(streamid: Int, delta: Int) extends ControlFrame with StreamFrame with Product with Serializable

Value Members

  1. object GoAwayCode extends Enumeration

  2. object RstCode extends Enumeration

  3. object Setting extends Serializable

  4. object SettingFlag

  5. object SettingID extends Enumeration

  6. val spdyCompresionDict: Array[Byte]

Inherited from AnyRef

Inherited from Any

Ungrouped