trait Projection[Envelope] extends AnyRef
The core abstraction in Akka Projections.
A projection instance may share the same name and Envelope, but must have a unique key. The key is used to achieve processing parallelism for a projection.
For example, many projections may share the same name "user-events-projection", but can process events for different sharded entities within Akka Cluster, where key could be the Akka Cluster shardId.
- Envelope
The envelope type of the projection.
- Source
- Projection.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Projection
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def projectionId: ProjectionId
- abstract def statusObserver: StatusObserver[Envelope]
- abstract def withRestartBackoff(minBackoff: Duration, maxBackoff: Duration, randomFactor: Double, maxRestarts: Int): Projection[Envelope]
Java API
- abstract def withRestartBackoff(minBackoff: Duration, maxBackoff: Duration, randomFactor: Double): Projection[Envelope]
Java API
- abstract def withRestartBackoff(minBackoff: FiniteDuration, maxBackoff: FiniteDuration, randomFactor: Double, maxRestarts: Int): Projection[Envelope]
- abstract def withRestartBackoff(minBackoff: FiniteDuration, maxBackoff: FiniteDuration, randomFactor: Double): Projection[Envelope]
- abstract def withStatusObserver(observer: StatusObserver[Envelope]): Projection[Envelope]