Uses of Interface
org.axonframework.eventsourcing.handler.SourcingHandler
Packages that use SourcingHandler
Package
Description
Root package for Axon Eventsourcing.
Package for the sourcing handler API.
-
Uses of SourcingHandler in org.axonframework.eventsourcing
Constructors in org.axonframework.eventsourcing with parameters of type SourcingHandlerModifierConstructorDescriptionEventSourcingRepository(Class<ID> idType, Class<E> entityType, EventStore eventStore, EventSourcedEntityFactory<ID, E> entityFactory, EntityEvolver<E> entityEvolver, SourcingHandler<ID, E> sourcingHandler) 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 SourcingHandler in org.axonframework.eventsourcing.handler
Classes in org.axonframework.eventsourcing.handler that implement SourcingHandlerModifier and TypeClassDescriptionclassA simple implementation ofSourcingHandlerthat reconstructs an entity by sourcing events directly from anEventStore.classASourcingHandlerimplementation that reconstructs an entity using snapshots when available, falling back to a full sourcing of events from theEventStoreif necessary.