Modifier and Type | Method and Description |
---|---|
SagaStore |
EventProcessingModule.sagaStore() |
SagaStore |
EventProcessingConfiguration.sagaStore()
Returns a
SagaStore registered within this configuration. |
SagaStore<? super S> |
SagaConfiguration.store()
Retrieve the
SagaStore in this Configuration. |
Modifier and Type | Method and Description |
---|---|
SagaConfigurer<T> |
SagaConfigurer.configureSagaStore(Function<Configuration,SagaStore<? super T>> storeBuilder)
Configures a
SagaStore for this Saga. |
EventProcessingConfigurer |
EventProcessingConfigurer.registerSagaStore(Function<Configuration,SagaStore> sagaStoreBuilder)
|
EventProcessingConfigurer |
EventProcessingModule.registerSagaStore(Function<Configuration,SagaStore> sagaStoreBuilder) |
Modifier and Type | Class and Description |
---|---|
class |
CachingSagaStore<T>
Saga Repository implementation that adds caching behavior to the repository it wraps.
|
Modifier and Type | Method and Description |
---|---|
CachingSagaStore.Builder<T> |
CachingSagaStore.Builder.delegateSagaStore(SagaStore<T> delegateSagaStore)
Sets the
SagaStore instance providing access to (persisted) entries. |
AnnotatedSagaRepository.Builder<T> |
AnnotatedSagaRepository.Builder.sagaStore(SagaStore<? super T> sagaStore)
Sets the
SagaStore used to save and load saga instances. |
Modifier and Type | Class and Description |
---|---|
class |
InMemorySagaStore
SagaRepository implementation that stores all Saga instances in memory.
|
Modifier and Type | Class and Description |
---|---|
class |
JdbcSagaStore
Jdbc implementation of the
SagaStore . |
Modifier and Type | Class and Description |
---|---|
class |
JpaSagaStore
JPA implementation of the
SagaStore . |
Copyright © 2010–2018. All rights reserved.