Package | Description |
---|---|
org.axonframework.cache |
Package containing a Caching abstraction, while waiting for the JSR 107 to be fully specified and implemented.
|
org.axonframework.commandhandling.disruptor | |
org.axonframework.eventsourcing |
Classes related to event sourcing.
|
org.axonframework.saga.repository |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCacheAdapter<L>
Abstract implementation of the Cache interface which makes it easier to implement Adapters.
|
class |
EhCacheAdapter
Cache implementation that delegates all calls to an EhCache instance.
|
class |
JCacheAdapter
Cache adapter implementation that allows providers implementing the JCache abstraction to be used.
|
class |
NoCache
Cache implementation that does absolutely nothing.
|
class |
WeakReferenceCache
Cache implementation that keeps values in the cache until the garbage collector has removed them.
|
Modifier and Type | Method and Description |
---|---|
Cache |
DisruptorConfiguration.getCache()
Returns the cache used to store Aggregates loaded by the DisruptorCommandBus.
|
Modifier and Type | Method and Description |
---|---|
DisruptorConfiguration |
DisruptorConfiguration.setCache(Cache cache)
Sets the cache in which loaded aggregates will be stored.
|
Constructor and Description |
---|
CommandHandlerInvoker(EventStore eventStore,
Cache cache,
int segmentId)
Create an aggregate invoker instance that uses the given
eventStore and cache to
retrieve aggregate instances. |
Modifier and Type | Method and Description |
---|---|
void |
EventCountSnapshotterTrigger.setAggregateCache(Cache cache)
Sets the Cache instance used be Caching repositories.
|
void |
CachingEventSourcingRepository.setCache(Cache cache)
Set the cache to use for this repository.
|
Modifier and Type | Method and Description |
---|---|
void |
EventCountSnapshotterTrigger.setAggregateCaches(List<Cache> caches)
Sets the Cache instances used be Caching repositories.
|
Constructor and Description |
---|
CachingSagaRepository(SagaRepository delegate,
Cache associationsCache,
Cache sagaCache)
Initializes an instance delegating to the given
delegate , storing associations in the given
associationsCache and Saga instances in the given sagaCache . |
Copyright © 2010-2014. All Rights Reserved.