c

akka.persistence.journal

EventAdapters

class EventAdapters extends AnyRef

EventAdapters serves as a per-journal collection of bound event adapters.

Source
EventAdapters.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EventAdapters
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EventAdapters(map: ConcurrentHashMap[Class[_], EventAdapter], bindings: Seq[(Class[_], EventAdapter)], log: LoggingAdapter)

Value Members

  1. def get(clazz: Class[_]): EventAdapter

    Finds the "most specific" matching adapter for the given class (i.e.

    Finds the "most specific" matching adapter for the given class (i.e. it may return an adapter that can work on a interface implemented by the given class if no direct match is found).

    Falls back to IdentityEventAdapter if no adapter was defined for the given class.

  2. def toString(): String
    Definition Classes
    EventAdapters → AnyRef → Any