Class InvocationResult
java.lang.Object
org.springframework.amqp.listener.adapter.InvocationResult
org.springframework.amqp.rabbit.listener.adapter.InvocationResult
@Deprecated(since="4.1",
forRemoval=true)
public final class InvocationResult
extends org.springframework.amqp.listener.adapter.InvocationResult
Deprecated, for removal: This API element is subject to removal in a future version.
The result of a listener method invocation.
- Since:
- 2.1
-
Constructor Summary
ConstructorsConstructorDescriptionInvocationResult(@Nullable Object result, @Nullable org.springframework.expression.Expression sendTo, @Nullable Type returnType, @Nullable Object bean, @Nullable Method method) Deprecated, for removal: This API element is subject to removal in a future version.Construct an instance with the provided properties. -
Method Summary
Methods inherited from class org.springframework.amqp.listener.adapter.InvocationResult
getBean, getMethod, getReturnType, getReturnValue, getSendTo, toString
-
Constructor Details
-
InvocationResult
public InvocationResult(@Nullable Object result, @Nullable org.springframework.expression.Expression sendTo, @Nullable Type returnType, @Nullable Object bean, @Nullable Method method) Deprecated, for removal: This API element is subject to removal in a future version.Construct an instance with the provided properties.- Parameters:
result- the result.sendTo- the sendTo expression.returnType- the return type.bean- the bean.method- the method.
-
InvocationResult.