case class Event(data: String, id: Option[String], name: Option[String]) extends Product with Serializable

An event encoded with the SSE protocol..

Source
EventSource.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Event
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Event(data: String, id: Option[String], name: Option[String])

Value Members

  1. val data: String
  2. lazy val formatted: String

    This event, formatted according to the EventSource protocol.

  3. val id: Option[String]
  4. val name: Option[String]
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product