object WebSocketFrame
- Source
- WebSocketFrame.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- WebSocketFrame
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class Binary(data: ByteVector, last: Boolean = true) extends WebSocketFrame with Product with Serializable
- final case class Close(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
- final case class Continuation(data: ByteVector, last: Boolean) extends WebSocketFrame with Product with Serializable
- sealed abstract class ControlFrame extends WebSocketFrame
- class InvalidCloseCodeException extends InvalidCloseDataException
- sealed abstract class InvalidCloseDataException extends RuntimeException
- final case class Ping(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
- final case class Pong(data: ByteVector = ByteVector.empty) extends ControlFrame with Product with Serializable
- class ReasonTooLongException extends InvalidCloseDataException
- sealed abstract class Text extends WebSocketFrame
Value Members
- object Close extends Serializable
- object Text