Uses of Interface
io.fluxcapacitor.javaclient.persisting.eventsourcing.SnapshotStore
Packages that use SnapshotStore
Package
Description
-
Uses of SnapshotStore in io.fluxcapacitor.javaclient
Methods in io.fluxcapacitor.javaclient that return SnapshotStoreModifier and TypeMethodDescriptionFluxCapacitor.snapshotStore()
Returns the store for aggregate snapshots. -
Uses of SnapshotStore in io.fluxcapacitor.javaclient.configuration
Methods in io.fluxcapacitor.javaclient.configuration with parameters of type SnapshotStoreModifier and TypeMethodDescriptionprotected FluxCapacitor
DefaultFluxCapacitor.Builder.doBuild
(Map<MessageType, ? extends Tracking> trackingSupplier, Function<String, ? extends GenericGateway> customGatewaySupplier, CommandGateway commandGateway, QueryGateway queryGateway, EventGateway eventGateway, ResultGateway resultGateway, ErrorGateway errorGateway, MetricsGateway metricsGateway, WebRequestGateway webRequestGateway, AggregateRepository aggregateRepository, SnapshotStore snapshotStore, EventStore eventStore, KeyValueStore keyValueStore, DocumentStore documentStore, MessageScheduler messageScheduler, UserProvider userProvider, Cache cache, Serializer serializer, CorrelationDataProvider correlationDataProvider, IdentityProvider identityProvider, PropertySource propertySource, DelegatingClock clock, TaskScheduler taskScheduler, Client client, ThrowingRunnable shutdownHandler) -
Uses of SnapshotStore in io.fluxcapacitor.javaclient.persisting.eventsourcing
Classes in io.fluxcapacitor.javaclient.persisting.eventsourcing that implement SnapshotStoreModifier and TypeClassDescriptionclass
Default implementation of theSnapshotStore
interface, responsible for managing snapshots of aggregate roots in an event-sourced system.enum
ASnapshotStore
implementation that is used when snapshotting is explicitly disabled, such as whensnapshotPeriod <= 0
is configured on an aggregate viaAggregate
.