Package

play.socketio

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. case class SocketIOAckPacket(namespace: Option[String], data: Seq[JsValue], id: Long) extends SocketIOPacket with Product with Serializable

    Permalink
  2. case class SocketIOBinaryAckPacket(namespace: Option[String], data: Seq[Either[JsValue, ByteString]], id: Long) extends SocketIOPacket with Product with Serializable

    Permalink
  3. case class SocketIOBinaryEventPacket(namespace: Option[String], data: Seq[Either[JsValue, ByteString]], id: Option[Long]) extends SocketIOPacket with Product with Serializable

    Permalink
  4. case class SocketIOConnectPacket(namespace: Option[String]) extends SocketIOPacket with Product with Serializable

    Permalink
  5. case class SocketIODisconnectPacket(namespace: Option[String]) extends SocketIOPacket with Product with Serializable

    Permalink
  6. case class SocketIOEncodingException(packet: String, message: String, cause: Exception = null) extends RuntimeException with Product with Serializable

    Permalink

    Exception thrown when there was a problem encoding or decoding a socket.io packet from the underlying engine.io packets.

  7. case class SocketIOErrorPacket(namespace: Option[String], data: JsValue) extends SocketIOPacket with Product with Serializable

    Permalink
  8. case class SocketIOEventPacket(namespace: Option[String], data: Seq[JsValue], id: Option[Long]) extends SocketIOPacket with Product with Serializable

    Permalink
  9. sealed trait SocketIOPacket extends AnyRef

    Permalink

    A socket.io packet.

  10. sealed abstract class SocketIOPacketType extends AnyRef

    Permalink

    A socket.io packet type.

Value Members

  1. object SocketIOErrorPacket extends Serializable

    Permalink
  2. object SocketIOPacket

    Permalink
  3. object SocketIOPacketType

    Permalink

Ungrouped