case class Dispatch[+D](sequence: Int, event: GatewayEvent[D], gatewayInfo: GatewayInfo) extends ServerGatewayMessage[D] with Product with Serializable

Sent with each new event.

sequence

The seq number.

event

The sent event.

Source
gatewayData.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dispatch
  2. Serializable
  3. Product
  4. Equals
  5. ServerGatewayMessage
  6. GatewayMessage
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Dispatch(sequence: Int, event: GatewayEvent[D], gatewayInfo: GatewayInfo)

    sequence

    The seq number.

    event

    The sent event.

Value Members

  1. def d: Eval[Either[DecodingFailure, D]]

    The data for the message.

    The data for the message.

    Definition Classes
    DispatchGatewayMessage
  2. val event: GatewayEvent[D]
  3. val gatewayInfo: GatewayInfo

    Misc info gathered from the gateway this message came from.

    Misc info gathered from the gateway this message came from.

    Definition Classes
    DispatchServerGatewayMessage
  4. def op: GatewayOpCode

    The op code for the message.

    The op code for the message.

    Definition Classes
    DispatchGatewayMessage
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val s: util.JsonSome[Int]

    A sequence number for the message if there is one.

    A sequence number for the message if there is one.

    Definition Classes
    DispatchGatewayMessage
  7. val sequence: Int
  8. val t: util.JsonSome[GatewayEvent[D]]
    Definition Classes
    DispatchGatewayMessage