Uses of Interface
org.axonframework.saga.SagaFactory

Packages that use SagaFactory
org.axonframework.saga   
org.axonframework.saga.annotation   
 

Uses of SagaFactory in org.axonframework.saga
 

Classes in org.axonframework.saga that implement SagaFactory
 class GenericSagaFactory
          SagaFactory implementation that uses the default (no-arg) constructor on the saga to initialize.
 

Constructors in org.axonframework.saga with parameters of type SagaFactory
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, 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 SagaFactory in org.axonframework.saga.annotation
 

Methods in org.axonframework.saga.annotation with parameters of type SagaFactory
 void AsyncAnnotatedSagaManager.setSagaFactory(SagaFactory sagaFactory)
          Sets the SagaFactory responsible for creating new Saga instances when required.
 

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



Copyright © 2010-2016. All Rights Reserved.