Uses of Interface
org.axonframework.cache.Cache

Packages that use Cache
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   
 

Uses of Cache in org.axonframework.cache
 

Classes in org.axonframework.cache that implement Cache
 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.
 

Uses of Cache in org.axonframework.commandhandling.disruptor
 

Methods in org.axonframework.commandhandling.disruptor that return Cache
 Cache DisruptorConfiguration.getCache()
          Returns the cache used to store Aggregates loaded by the DisruptorCommandBus.
 

Methods in org.axonframework.commandhandling.disruptor with parameters of type Cache
 DisruptorConfiguration DisruptorConfiguration.setCache(Cache cache)
          Sets the cache in which loaded aggregates will be stored.
 

Constructors in org.axonframework.commandhandling.disruptor with parameters of type Cache
CommandHandlerInvoker(EventStore eventStore, Cache cache, int segmentId)
          Create an aggregate invoker instance that uses the given eventStore and cache to retrieve aggregate instances.
 

Uses of Cache in org.axonframework.eventsourcing
 

Methods in org.axonframework.eventsourcing with parameters of type Cache
 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.
 

Method parameters in org.axonframework.eventsourcing with type arguments of type Cache
 void EventCountSnapshotterTrigger.setAggregateCaches(List<Cache> caches)
          Sets the Cache instances used be Caching repositories.
 

Uses of Cache in org.axonframework.saga.repository
 

Constructors in org.axonframework.saga.repository with parameters of type Cache
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-2016. All Rights Reserved.