Uses of Record Class
org.axonframework.eventsourcing.eventstore.jpa.AggregateBasedJpaEventStorageEngineConfiguration
Packages that use AggregateBasedJpaEventStorageEngineConfiguration
Package
Description
JPA Implementation of the EventStore.
-
Uses of AggregateBasedJpaEventStorageEngineConfiguration in org.axonframework.eventsourcing.eventstore.jpa
Fields in org.axonframework.eventsourcing.eventstore.jpa declared as AggregateBasedJpaEventStorageEngineConfigurationModifier and TypeFieldDescriptionstatic final AggregateBasedJpaEventStorageEngineConfigurationAggregateBasedJpaEventStorageEngineConfiguration.DEFAULTA default instance of theAggregateBasedJpaEventStorageEngineConfiguration.Methods in org.axonframework.eventsourcing.eventstore.jpa that return AggregateBasedJpaEventStorageEngineConfigurationModifier and TypeMethodDescriptionAggregateBasedJpaEventStorageEngineConfiguration.batchSize(int batchSize) Sets thebatchSizespecifying the number of events that should be read at each database access.AggregateBasedJpaEventStorageEngineConfiguration.eventCoordinator(EventCoordinator eventCoordinator) Defines theEventCoordinatorto use.AggregateBasedJpaEventStorageEngineConfiguration.finalBatchPredicate(Predicate<List<? extends AggregateEventEntry>> finalBatchPredicate) Defines the predicate used to recognize the terminal batch whensourcingevents.AggregateBasedJpaEventStorageEngineConfiguration.gapCleaningThreshold(int gapCleaningThreshold) Sets the threshold of number of gaps in a token before an attempt to clean gaps up is taken.AggregateBasedJpaEventStorageEngineConfiguration.gapTimeout(int gapTimeout) Sets the amount of time until a gap in aGapAwareTrackingTokenmay be considered timed out and thus ready for removal.AggregateBasedJpaEventStorageEngineConfiguration.lowestGlobalSequence(long lowestGlobalSequence) Sets thelowestGlobalSequencespecifying the first expected auto generated sequence number.AggregateBasedJpaEventStorageEngineConfiguration.maxGapOffset(int maxGapOffset) Sets themaxGapOffsetspecifying the maximum distance in sequence numbers between a missing event and the event with the highest known index.AggregateBasedJpaEventStorageEngineConfiguration.persistenceExceptionResolver(PersistenceExceptionResolver persistenceExceptionResolver) Sets thePersistenceExceptionResolverused to detect concurrency exceptions from the backing database.Constructor parameters in org.axonframework.eventsourcing.eventstore.jpa with type arguments of type AggregateBasedJpaEventStorageEngineConfigurationModifierConstructorDescriptionAggregateBasedJpaEventStorageEngine(TransactionalExecutorProvider<jakarta.persistence.EntityManager> transactionalExecutorProvider, EventConverter converter, UnaryOperator<AggregateBasedJpaEventStorageEngineConfiguration> configurer) Constructs anAggregateBasedJpaEventStorageEnginewith the given parameters.