Package | Description |
---|---|
org.axonframework.axonserver.connector.query | |
org.axonframework.commandhandling |
Classes that implement the concept of command handling using explicit command objects.
|
org.axonframework.disruptor.commandhandling | |
org.axonframework.messaging |
Classes related to message processing in Axon Framework.
|
org.axonframework.messaging.unitofwork | |
org.axonframework.queryhandling |
Modifier and Type | Class and Description |
---|---|
class |
GrpcBackedResponseMessage<R>
Wrapper around GRPC QueryRequest to implement the QueryMessage interface
|
Modifier and Type | Interface and Description |
---|---|
interface |
CommandResultMessage<R>
Message that represents a result from handling a
CommandMessage . |
Modifier and Type | Class and Description |
---|---|
class |
GenericCommandResultMessage<R>
Generic implementation of
CommandResultMessage . |
Modifier and Type | Method and Description |
---|---|
<R> ResultMessage<R> |
DisruptorUnitOfWork.executeWithResult(Callable<R> task,
RollbackConfiguration rollbackConfiguration)
Execute the given
task in the context of this Unit of Work. |
Modifier and Type | Class and Description |
---|---|
class |
GenericResultMessage<R>
Generic implementation of
ResultMessage . |
Modifier and Type | Method and Description |
---|---|
ResultMessage<R> |
ResultMessage.andMetaData(Map<String,?> metaData) |
static <T> ResultMessage<T> |
GenericResultMessage.asResultMessage(Object result)
Returns the given
result as a ResultMessage instance. |
static <T> ResultMessage<T> |
GenericResultMessage.asResultMessage(Throwable exception)
Creates a ResultMessage with the given
exception result. |
ResultMessage<R> |
ResultMessage.withMetaData(Map<String,?> metaData) |
Modifier and Type | Method and Description |
---|---|
default <R> ResultMessage<R> |
UnitOfWork.executeWithResult(Callable<R> task)
Execute the given
task in the context of this Unit of Work. |
<R> ResultMessage<R> |
DefaultUnitOfWork.executeWithResult(Callable<R> task,
RollbackConfiguration rollbackConfiguration) |
<R> ResultMessage<R> |
BatchingUnitOfWork.executeWithResult(Callable<R> task,
RollbackConfiguration rollbackConfiguration)
Execute the given
task in the context of this Unit of Work. |
<R> ResultMessage<R> |
UnitOfWork.executeWithResult(Callable<R> task,
RollbackConfiguration rollbackConfiguration)
Execute the given
task in the context of this Unit of Work. |
ResultMessage<?> |
ExecutionResult.getResult()
Return the execution result message.
|
Constructor and Description |
---|
ExecutionResult(ResultMessage<?> result)
Initializes an
ExecutionResult from the given result . |
Modifier and Type | Interface and Description |
---|---|
interface |
QueryResponseMessage<T>
Message that contains the results of a Query.
|
Modifier and Type | Class and Description |
---|---|
class |
GenericQueryResponseMessage<R>
QueryResponseMessage implementation that takes all properties as constructor parameters.
|
Copyright © 2010–2018. All rights reserved.