Uses of Interface
org.axonframework.eventsourcing.handler.EntityLifecycleHandler
Packages that use EntityLifecycleHandler
Package
Description
Root package for Axon Eventsourcing.
Package for the sourcing handler API.
-
Uses of EntityLifecycleHandler in org.axonframework.eventsourcing
Constructors in org.axonframework.eventsourcing with parameters of type EntityLifecycleHandlerModifierConstructorDescriptionEventSourcingRepository(Class<ID> idType, Class<E> entityType, EntityLifecycleHandler<ID, E> lifecycleHandler) Initialize the repository to load events from the giveneventStoreusing the givenentityEvolverto apply state transitions to the entity based on the events received, and givensourcingHandlerto process the event stream. -
Uses of EntityLifecycleHandler in org.axonframework.eventsourcing.handler
Classes in org.axonframework.eventsourcing.handler that implement EntityLifecycleHandlerModifier and TypeClassDescriptionclassA simple implementation ofEntityLifecycleHandlerthat reconstructs an entity by sourcing events directly from anEventStore.classAnEntityLifecycleHandlerimplementation that reconstructs an entity from theEventStore, using snapshots to improve efficiency when available.