Uses of Interface
org.axonframework.eventsourcing.eventstore.EventCoordinator
Packages that use EventCoordinator
Package
Description
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
JPA Implementation of the EventStore.
-
Uses of EventCoordinator in org.axonframework.eventsourcing.eventstore
Fields in org.axonframework.eventsourcing.eventstore declared as EventCoordinatorModifier and TypeFieldDescriptionstatic final EventCoordinatorEventCoordinator.SIMPLEA coordinator that only forwards append notifications within a single event storage engine. -
Uses of EventCoordinator in org.axonframework.eventsourcing.eventstore.jpa
Classes in org.axonframework.eventsourcing.eventstore.jpa that implement EventCoordinatorModifier and TypeClassDescriptionclassAnEventCoordinatorimplementation that polls a JPA-managed event table to detect newly appended events.Methods in org.axonframework.eventsourcing.eventstore.jpa that return EventCoordinatorModifier and TypeMethodDescriptionAggregateBasedJpaEventStorageEngineConfiguration.eventCoordinator()Returns the value of theeventCoordinatorrecord component.Methods in org.axonframework.eventsourcing.eventstore.jpa with parameters of type EventCoordinatorModifier and TypeMethodDescriptionAggregateBasedJpaEventStorageEngineConfiguration.eventCoordinator(EventCoordinator eventCoordinator) Defines theEventCoordinatorto use.Constructors in org.axonframework.eventsourcing.eventstore.jpa with parameters of type EventCoordinatorModifierConstructorDescriptionAggregateBasedJpaEventStorageEngineConfiguration(PersistenceExceptionResolver persistenceExceptionResolver, Predicate<List<? extends AggregateEventEntry>> finalBatchPredicate, EventCoordinator eventCoordinator, int batchSize, int gapCleaningThreshold, int maxGapOffset, long lowestGlobalSequence, int gapTimeout) Compact constructor validating that the givenkeyandvalueare notnull.