Package akka.javasdk.eventsourcedentity


package akka.javasdk.eventsourcedentity
Event Sourced Entity components for building stateful services that persist changes as events in a journal.

Event Sourced Entities store a sequence of events rather than the current state directly. The current state is derived by replaying all events from the journal. This approach provides a complete audit trail, enables reliable state replication, and allows for sophisticated event-driven architectures.

The main classes in this package are:

See Also: