Uses of Class
org.axonframework.modelling.saga.AnnotatedSaga
Packages that use AnnotatedSaga
-
Uses of AnnotatedSaga in org.axonframework.modelling.saga.repository
Methods in org.axonframework.modelling.saga.repository that return AnnotatedSagaModifier and TypeMethodDescriptionAnnotatedSagaRepository.doCreateInstance(String sagaIdentifier, Supplier<T> sagaFactory) protected AnnotatedSaga<T> AnnotatedSagaRepository.doLoadSaga(String sagaIdentifier) Loads the saga with givensagaIdentifierfrom the underlying saga store and returns it as aAnnotatedSaga.Methods in org.axonframework.modelling.saga.repository with parameters of type AnnotatedSagaModifier and TypeMethodDescriptionprotected voidAnnotatedSagaRepository.commit(AnnotatedSaga<T> saga) Commits the given modifiedsagato the underlying saga store.protected voidAnnotatedSagaRepository.deleteSaga(AnnotatedSaga<T> saga) Remove the given saga as well as all known association values pointing to it from the repository.protected voidAnnotatedSagaRepository.storeSaga(AnnotatedSaga<T> saga) Stores a newly created Saga instance.protected voidAnnotatedSagaRepository.updateSaga(AnnotatedSaga<T> saga) Update a stored Saga, by replacing it with the givensagainstance.