Interface RabbitListenerErrorHandler
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface RabbitListenerErrorHandlerAn error handler which is called when a {code @RabbitListener} method throws an exception. This is invoked higher up the stack than the listener container's error handler.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjecthandleError(org.springframework.amqp.core.Message amqpMessage, org.springframework.messaging.Message<?> message, ListenerExecutionFailedException exception)Handle the error.
-
-
-
Method Detail
-
handleError
java.lang.Object handleError(org.springframework.amqp.core.Message amqpMessage, @Nullable org.springframework.messaging.Message<?> message, ListenerExecutionFailedException exception) throws java.lang.ExceptionHandle the error. If an exception is not thrown, the return value is returned to the sender using normalreplyTo/@SendTosemantics.- Parameters:
amqpMessage- the raw message received.message- the converted spring-messaging message (if available).exception- the exception the listener threw, wrapped in aListenerExecutionFailedException.- Returns:
- the return value to be sent to the sender.
- Throws:
java.lang.Exception- an exception which may be the original or different.
-
-