Package | Description |
---|---|
org.axonframework.quickstart.saga | |
org.axonframework.saga.annotation | |
org.axonframework.test.saga |
Modifier and Type | Class and Description |
---|---|
class |
ToDoSaga |
Modifier and Type | Class and Description |
---|---|
class |
SagaMethodMessageHandlerInspector<T extends AbstractAnnotatedSaga>
Utility class that inspects annotation on a Saga instance and returns the relevant configuration for its Event
Handlers.
|
Modifier and Type | Method and Description |
---|---|
static <T extends AbstractAnnotatedSaga> |
SagaMethodMessageHandlerInspector.getInstance(Class<T> sagaType,
ParameterResolverFactory parameterResolverFactory)
Returns a SagaMethodMessageHandlerInspector for the given
sagaType . |
Modifier and Type | Method and Description |
---|---|
AbstractAnnotatedSaga |
AsyncSagaProcessingEvent.getNewSaga()
Returns the new Saga instance that should be used when processing an Event that creates a new Saga instance
|
Modifier and Type | Method and Description |
---|---|
SagaMethodMessageHandler |
SagaMethodMessageHandlerInspector.findHandlerMethod(AbstractAnnotatedSaga target,
EventMessage event)
Finds the handler method on given
target for the given event . |
void |
AsyncSagaProcessingEvent.reset(EventMessage nextEvent,
Class<? extends AbstractAnnotatedSaga> nextSagaType,
List<SagaMethodMessageHandler> nextHandlers,
AbstractAnnotatedSaga nextSagaInstance)
Reset this entry for processing a new EventMessage
|
Modifier and Type | Method and Description |
---|---|
void |
AsyncSagaProcessingEvent.reset(EventMessage nextEvent,
Class<? extends AbstractAnnotatedSaga> nextSagaType,
List<SagaMethodMessageHandler> nextHandlers,
AbstractAnnotatedSaga nextSagaInstance)
Reset this entry for processing a new EventMessage
|
Constructor and Description |
---|
AnnotatedSagaTestFixture(Class<? extends AbstractAnnotatedSaga> sagaType)
Creates an instance of the AnnotatedSagaTestFixture to test sagas of the given
sagaType . |
Copyright © 2010-2014. All Rights Reserved.