Uses of Interface
org.axonframework.eventstore.EventStore

Packages that use EventStore
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.jpa JPA Implementation of the EventStore. 
org.axonframework.eventstore.mongo   
 

Uses of EventStore in org.axonframework.eventsourcing
 

Methods in org.axonframework.eventsourcing with parameters of type EventStore
 void EventSourcingRepository.setEventStore(EventStore eventStore)
          Sets the event store that would physically store the events.
 

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 using XStream and writes them to files to disk.
 

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.
 



Copyright © 2011. All Rights Reserved.