case class Tagged(payload: Any, tags: Set[String]) extends Product with Serializable

The journal may support tagging of events that are used by the EventsByTag query and it may support specifying the tags via an akka.persistence.journal.EventAdapter that wraps the events in a Tagged with the given tags. The journal may support other ways of doing tagging. Please consult the documentation of the specific journal implementation for more information.

The journal will unwrap the event and store the payload.

Source
Tagged.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tagged
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Tagged(payload: Any, tags: Set[String])

    Java API

  2. new Tagged(payload: Any, tags: Set[String])

Value Members

  1. val payload: Any
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val tags: Set[String]