Registry / other / akka-persistence-typed-2-13

akka-persistence-typed-2-13

JSON →
library2.8.8javamavenunverified

Akka Persistence Typed provides typed actors with persistent state for building resilient, event-sourced applications.

<dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-persistence-typed_2.13</artifactId> <version>2.8.8</version> </dependency>
INSTALL
IMPORT
SIG · AKKA-PERSISTENCE-T
A
akka-persistence-typed-2-13
otherjavav2.8.8
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

EventSourcedBehavior
akka.persistence.typed.scaladsl.EventSourcedBehavior

Minimal usage of Akka Persistence Typed.

import akka.persistence.typed.scaladsl.EventSourcedBehavior; public class Main { public static void main(String[] args) { EventSourcedBehavior<String, String, String> behavior = EventSourcedBehavior( "persistenceId", "", (state, cmd) -> Effect().persist(cmd), (state, evt) -> state + evt ); System.out.println("Behavior created"); } }
Debug
Known issues
gotchaAkka 2.8.x may have compatibility issues with older Scala versions.
fix
Ensure Scala 2.13 is used and check Akka version compatibility.
affects: 2.8.x
Upgrade
Version history
2.8.8latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
39 hits · last 30 days
node
32
Meta
1
OpenAI (training)
1
Resources
akka-persistence-typed-2-13 — mvn dependency:get akka-persistence-typed-2-13 · libregistry