Trait/Object

io.funcqrs.projections

Projection

Related Docs: object Projection | package projections

Permalink

trait Projection[E] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Projection
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type HandleEvent = PartialFunction[E, Future[Unit]]

    Permalink
  2. type OnFailure = PartialFunction[(E, Throwable), Future[Unit]]

    Permalink

Abstract Value Members

  1. abstract def handleEvent: HandleEvent

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object HandleEvent

    Permalink

    Handles an incoming Event asynchronously.

  5. def andThen(projection: Projection[E]): AndThenProjection[E]

    Permalink

    Builds a AndThenProjection composed of this Projection and the passed Projection.

    Builds a AndThenProjection composed of this Projection and the passed Projection.

    Events will be send to both projections. One after the other starting by this followed by the passed Projection.

    NOTE: In the occurrence of any failure on any of the underling Projections, this Projection may be replayed, therefore idempotent operations are recommended.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. object attempt

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def name: String

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def onEvent(evt: E): Future[Unit]

    Permalink
  20. def onFailure: OnFailure

    Permalink
  21. def orElse(fallbackProjection: Projection[E]): OrElseProjection[E]

    Permalink

    Builds a OrElseProjection composed of this Projection and the passed Projection.

    Builds a OrElseProjection composed of this Projection and the passed Projection.

    If this Projection is defined for a given incoming Event, then this Projection will be applied, otherwise we fallback to the passed Projection.

  22. object sync

    Permalink
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped