object Event extends Serializable

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

Value Members

  1. def apply[A](a: A)(implicit dataExtractor: EventDataExtractor[A], nameExtractor: EventNameExtractor[A], idExtractor: EventIdExtractor[A]): Event

    Creates an event from a single input, using implicit extractors to provide raw values.

    Creates an event from a single input, using implicit extractors to provide raw values.

    If no extractor is available, the implicit conversion in the low priority traits will be used. For the EventDataExtractor, this means String or JsValue will be automatically mapped, and the nameExtractor and idExtractor will implicitly resolve to None.

  2. implicit def contentType(implicit codec: Codec): [Event]
  3. implicit def writeable(implicit codec: Codec): [Event]