Class ErrorMessageSendingRecoverer
java.lang.Object
org.springframework.integration.core.ErrorMessagePublisher
org.springframework.integration.handler.advice.ErrorMessageSendingRecoverer
- All Implemented Interfaces:
Aware
,BeanFactoryAware
,org.springframework.retry.RecoveryCallback<Object>
public class ErrorMessageSendingRecoverer
extends ErrorMessagePublisher
implements org.springframework.retry.RecoveryCallback<Object>
A
RecoveryCallback
that sends the final throwable as an
ErrorMessage
after
retry exhaustion.- Since:
- 2.2
- Author:
- Gary Russell, Artem Bilan, Oleg Zhurakousky
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
-
Field Summary
Fields inherited from class org.springframework.integration.core.ErrorMessagePublisher
logger, messagingTemplate
-
Constructor Summary
ConstructorDescriptionConstruct instance with the defaulterrorChannel
to publish recovery error message.Construct instance based on the provided message channel.ErrorMessageSendingRecoverer
(MessageChannel channel, ErrorMessageStrategy errorMessageStrategy) Construct instance based on the provided message channel andErrorMessageStrategy
. -
Method Summary
Modifier and TypeMethodDescriptionprotected Throwable
payloadWhenNull
(AttributeAccessor context) Build aThrowable payload
based on the provided context for futureErrorMessage
when there is originalThrowable
.recover
(org.springframework.retry.RetryContext context) Methods inherited from class org.springframework.integration.core.ErrorMessagePublisher
determinePayload, getChannel, getChannelResolver, getErrorMessageStrategy, getMessagingTemplate, publish, publish, publish, publish, publish, setBeanFactory, setChannel, setChannelName, setChannelResolver, setErrorMessageStrategy, setSendTimeout
-
Constructor Details
-
ErrorMessageSendingRecoverer
public ErrorMessageSendingRecoverer()Construct instance with the defaulterrorChannel
to publish recovery error message. TheDefaultErrorMessageStrategy
is used for building error message to publish.- Since:
- 4.3.10
-
ErrorMessageSendingRecoverer
Construct instance based on the provided message channel. TheDefaultErrorMessageStrategy
is used for building error message to publish.- Parameters:
channel
- the message channel to publish error messages on recovery action.
-
ErrorMessageSendingRecoverer
public ErrorMessageSendingRecoverer(MessageChannel channel, ErrorMessageStrategy errorMessageStrategy) Construct instance based on the provided message channel andErrorMessageStrategy
. In the event providedErrorMessageStrategy
is null, theDefaultErrorMessageStrategy
will be used.- Parameters:
channel
- the message channel to publish error messages on recovery action.errorMessageStrategy
- theErrorMessageStrategy
to build error message for publishing. Can be null at which point theDefaultErrorMessageStrategy
is used.- Since:
- 4.3.10
-
-
Method Details
-
recover
- Specified by:
recover
in interfaceorg.springframework.retry.RecoveryCallback<Object>
-
payloadWhenNull
Description copied from class:ErrorMessagePublisher
Build aThrowable payload
based on the provided context for futureErrorMessage
when there is originalThrowable
.- Overrides:
payloadWhenNull
in classErrorMessagePublisher
- Parameters:
context
- theAttributeAccessor
to use for exception properties.- Returns:
- the
Throwable
for anErrorMessage
payload. - See Also:
-