trait DurableStateStoreProvider extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- DurableStateStoreProvider
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def javadslDurableStateStore(): [AnyRef]
The
DurableStateStore
implementation for the Java API.The
DurableStateStore
implementation for the Java API. This corresponds to the instance that is returned by DurableStateStoreRegistry#getDurableStateStoreFor. - abstract def scaladslDurableStateStore(): [Any]
The
DurableStateStore
implementation for the Scala API.The
DurableStateStore
implementation for the Scala API. This corresponds to the instance that is returned by DurableStateStoreRegistry#durableStateStoreFor.
A durable state store plugin must implement a class that implements this trait. It provides the concrete implementations for the Java and Scala APIs.
A durable state store plugin plugin must provide implementations for both
akka.persistence.state.scaladsl.DurableStateStore
andakka.persistence.state.javadsl.DurableStateStore
. One of the implementations can delegate to the other.