Uses of Interface
org.axonframework.eventstore.EventStore

Packages that use EventStore
org.axonframework.commandhandling.disruptor   
org.axonframework.eventsourcing Classes related to event sourcing. 
org.axonframework.eventstore Definitions and implementations of the Event store, the mechanism that can load event streams and append events to them. 
org.axonframework.eventstore.fs Package containing classes necessary to implement a FileSystem based implementation of the EventStore 
org.axonframework.eventstore.jdbc JDBC Implementation of the EventStore. 
org.axonframework.eventstore.jpa JPA Implementation of the EventStore. 
org.axonframework.eventstore.mongo   
org.axonframework.eventstore.supporting   
org.axonframework.gae.eventstore   
org.axonframework.quickstart   
org.axonframework.test Classes in support of testing Axon based applications. 
 

Uses of EventStore in org.axonframework.commandhandling.disruptor
 

Constructors in org.axonframework.commandhandling.disruptor with parameters of type EventStore
CommandHandlerInvoker(EventStore eventStore, Cache cache, int segmentId)
          Create an aggregate invoker instance that uses the given eventStore and cache to retrieve aggregate instances.
DisruptorCommandBus(EventStore eventStore, EventBus eventBus)
          Initialize the DisruptorCommandBus with given resources, using default configuration settings.
DisruptorCommandBus(EventStore eventStore, EventBus eventBus, DisruptorConfiguration configuration)
          Initialize the DisruptorCommandBus with given resources and settings.
EventPublisher(EventStore eventStore, EventBus eventBus, Executor executor, TransactionManager transactionManager, RollbackConfiguration rollbackConfiguration, int segmentId)
          Initializes the EventPublisher to publish Events to the given eventStore and eventBus for aggregate of given aggregateType.
 

Uses of EventStore in org.axonframework.eventsourcing
 

Methods in org.axonframework.eventsourcing with parameters of type EventStore
 void HybridJpaRepository.setEventStore(EventStore eventStore)
          The event store to which events are appended.
 

Constructors in org.axonframework.eventsourcing with parameters of type EventStore
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory, EventStore eventStore)
          Initializes a repository with a the given aggregateFactory and a pessimistic locking strategy.
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory, EventStore eventStore, LockManager lockManager)
          Initializes a repository with a the given aggregateFactory and a pessimistic locking strategy.
EventSourcingRepository(AggregateFactory<T> aggregateFactory, EventStore eventStore)
          Initializes a repository with the default locking strategy, using the given aggregateFactory to create new aggregate instances.
EventSourcingRepository(AggregateFactory<T> aggregateFactory, EventStore eventStore, LockManager lockManager)
          Initialize a repository with the given locking strategy.
EventSourcingRepository(Class<T> aggregateType, EventStore eventStore)
          Initializes a repository with the default locking strategy, using a GenericAggregateFactory to create new aggregate instances of given aggregateType.
EventSourcingRepository(Class<T> aggregateType, EventStore eventStore, LockManager lockManager)
          Initialize a repository with the given locking strategy, using a GenericAggregateFactory to create new aggregate instances.
 

Uses of EventStore in org.axonframework.eventstore
 

Subinterfaces of EventStore in org.axonframework.eventstore
 interface SnapshotEventStore
          Interface describing an event store that is able to store snapshot events.
 

Uses of EventStore in org.axonframework.eventstore.fs
 

Classes in org.axonframework.eventstore.fs that implement EventStore
 class FileSystemEventStore
          Implementation of the EventStore that serializes objects (by default using XStream) and writes them to files to disk.
 

Uses of EventStore in org.axonframework.eventstore.jdbc
 

Classes in org.axonframework.eventstore.jdbc that implement EventStore
 class JdbcEventStore
          An EventStore implementation that uses JPA to store DomainEvents in a database.
 

Uses of EventStore in org.axonframework.eventstore.jpa
 

Classes in org.axonframework.eventstore.jpa that implement EventStore
 class JpaEventStore
          An EventStore implementation that uses JPA to store DomainEvents in a database.
 

Uses of EventStore in org.axonframework.eventstore.mongo
 

Classes in org.axonframework.eventstore.mongo that implement EventStore
 class MongoEventStore
          Implementation of the EventStore based on a MongoDB instance or replica set.
 

Uses of EventStore in org.axonframework.eventstore.supporting
 

Classes in org.axonframework.eventstore.supporting that implement EventStore
 class SequenceEventStore
          Joins two EventStores together.
 class TimestampCutoffReadonlyEventStore
           Takes a backend, both EventStore and EventStoreManagement, and functions as a filter based on a DateTime.
 class VolatileEventStore
           
 

Constructors in org.axonframework.eventstore.supporting with parameters of type EventStore
SequenceEventStore(EventStore second, EventStoreManagement secondManagement, EventStore first, EventStoreManagement firstManagement)
           
TimestampCutoffReadonlyEventStore(EventStore backend, EventStoreManagement backendManagement, org.joda.time.DateTime snapshotTimestamp)
           
 

Uses of EventStore in org.axonframework.gae.eventstore
 

Classes in org.axonframework.gae.eventstore that implement EventStore
 class GaeEventStore
          EventStore implementation that uses Google App Engine's DatastoreService to store Event Streams.
 

Uses of EventStore in org.axonframework.quickstart
 

Classes in org.axonframework.quickstart that implement EventStore
static class RunEventReplay.StubEventStore
           
 

Uses of EventStore in org.axonframework.test
 

Methods in org.axonframework.test that return EventStore
 EventStore GivenWhenThenTestFixture.getEventStore()
           
 EventStore FixtureConfiguration.getEventStore()
          Returns the event store used by this fixture.
 



Copyright © 2010-2016. All Rights Reserved.