Packages

object WebSocketFrame

Source
WebSocketFrame.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WebSocketFrame
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Binary(data: ByteVector, last: Boolean = true) extends WebSocketFrame with Product with Serializable
  2. final case class Close(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
  3. final case class Continuation(data: ByteVector, last: Boolean) extends WebSocketFrame with Product with Serializable
  4. sealed abstract class ControlFrame extends WebSocketFrame
  5. class InvalidCloseCodeException extends InvalidCloseDataException
  6. sealed abstract class InvalidCloseDataException extends RuntimeException
  7. final case class Ping(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
  8. final case class Pong(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
  9. class ReasonTooLongException extends InvalidCloseDataException
  10. sealed abstract class Text extends WebSocketFrame

Value Members

  1. object Close extends Serializable
  2. object Text