Uses of Interface
org.axonframework.saga.SagaRepository

Packages that use SagaRepository
org.axonframework.saga   
org.axonframework.saga.annotation   
org.axonframework.saga.repository   
org.axonframework.saga.repository.inmemory   
org.axonframework.saga.repository.jdbc   
org.axonframework.saga.repository.jpa   
org.axonframework.saga.repository.mongo   
 

Uses of SagaRepository in org.axonframework.saga
 

Constructors in org.axonframework.saga with parameters of type SagaRepository
AbstractSagaManager(EventBus eventBus, SagaRepository sagaRepository, SagaFactory sagaFactory, Class<? extends Saga>... sagaTypes)
          Deprecated. use AbstractSagaManager.AbstractSagaManager(SagaRepository, SagaFactory, Class[]) and register using EventBus.subscribe(org.axonframework.eventhandling.EventListener)
AbstractSagaManager(SagaRepository sagaRepository, SagaFactory sagaFactory, Class<? extends Saga>... sagaTypes)
          Initializes the SagaManager with the given sagaRepository.
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver)
          Initialize a SimpleSagaManager backed by the given resources, using a GenericSagaFactory.
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver, EventBus eventBus)
          Deprecated. use SimpleSagaManager.SimpleSagaManager(Class, SagaRepository, AssociationValueResolver) and register using EventBus.subscribe(org.axonframework.eventhandling.EventListener)
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver, SagaFactory sagaFactory)
          Initialize a SimpleSagaManager backed by the given resources.
SimpleSagaManager(Class<? extends Saga> sagaType, SagaRepository sagaRepository, AssociationValueResolver associationValueResolver, SagaFactory sagaFactory, EventBus eventBus)
          Deprecated. use SimpleSagaManager.SimpleSagaManager(Class, SagaRepository, AssociationValueResolver, SagaFactory) and register using EventBus.subscribe(org.axonframework.eventhandling.EventListener)
 

Uses of SagaRepository in org.axonframework.saga.annotation
 

Methods in org.axonframework.saga.annotation with parameters of type SagaRepository
 void AsyncAnnotatedSagaManager.setSagaRepository(SagaRepository sagaRepository)
          Sets the saga repository to store and load Sagas from.
 

Constructors in org.axonframework.saga.annotation with parameters of type SagaRepository
AnnotatedSagaManager(SagaRepository sagaRepository, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using given repository to load sagas and supporting given annotated sagaClasses.
AnnotatedSagaManager(SagaRepository sagaRepository, EventBus eventBus, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Deprecated. use AnnotatedSagaManager.AnnotatedSagaManager(org.axonframework.saga.SagaRepository, Class[]) instead and register this instance using EventBus.subscribe(org.axonframework.eventhandling.EventListener)
AnnotatedSagaManager(SagaRepository sagaRepository, ParameterResolverFactory parameterResolverFactory, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using given repository to load sagas and supporting given annotated sagaClasses.
AnnotatedSagaManager(SagaRepository sagaRepository, SagaFactory sagaFactory, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using the given resources.
AnnotatedSagaManager(SagaRepository sagaRepository, SagaFactory sagaFactory, EventBus eventBus, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Deprecated. use AnnotatedSagaManager.AnnotatedSagaManager(org.axonframework.saga.SagaRepository, org.axonframework.saga.SagaFactory, Class[]) instead and register this instance using EventBus.subscribe(org.axonframework.eventhandling.EventListener)
AnnotatedSagaManager(SagaRepository sagaRepository, SagaFactory sagaFactory, ParameterResolverFactory parameterResolverFactory, Class<? extends AbstractAnnotatedSaga>... sagaClasses)
          Initialize the AnnotatedSagaManager using the given resources.
 

Uses of SagaRepository in org.axonframework.saga.repository
 

Classes in org.axonframework.saga.repository that implement SagaRepository
 class AbstractSagaRepository
          Abstract implementation for saga repositories.
 class CachingSagaRepository
          Saga Repository implementation that adds caching behavior to the repository it wraps.
 

Constructors in org.axonframework.saga.repository with parameters of type SagaRepository
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.
 

Uses of SagaRepository in org.axonframework.saga.repository.inmemory
 

Classes in org.axonframework.saga.repository.inmemory that implement SagaRepository
 class InMemorySagaRepository
          SagaRepository implementation that stores all Saga instances in memory.
 

Uses of SagaRepository in org.axonframework.saga.repository.jdbc
 

Classes in org.axonframework.saga.repository.jdbc that implement SagaRepository
 class JdbcSagaRepository
          Jdbc implementation of the Saga Repository.
 

Uses of SagaRepository in org.axonframework.saga.repository.jpa
 

Classes in org.axonframework.saga.repository.jpa that implement SagaRepository
 class JpaSagaRepository
          JPA implementation of the Saga Repository.
 

Uses of SagaRepository in org.axonframework.saga.repository.mongo
 

Classes in org.axonframework.saga.repository.mongo that implement SagaRepository
 class MongoSagaRepository
          Implementations of the SagaRepository that stores Sagas and their associations in a Mongo Database.
 



Copyright © 2010-2016. All Rights Reserved.