Class ConditionalDelegatingErrorHandler
java.lang.Object
org.springframework.kafka.listener.ConditionalDelegatingErrorHandler
- All Implemented Interfaces:
ConsumerAwareErrorHandler,ContainerAwareErrorHandler,ErrorHandler,GenericErrorHandler<org.apache.kafka.clients.consumer.ConsumerRecord<?,,?>> RemainingRecordsErrorHandler
@Deprecated
public class ConditionalDelegatingErrorHandler
extends Object
implements ContainerAwareErrorHandler
Deprecated.
An error handler that delegates to different error handlers, depending on the exception
type.
- Since:
- 2.7.4
-
Constructor Summary
ConstructorsConstructorDescriptionConditionalDelegatingErrorHandler(ContainerAwareErrorHandler defaultErrorHandler) Deprecated.Construct an instance with a default error handler that will be invoked if the exception has no matches. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddDelegate(Class<? extends Throwable> throwable, ContainerAwareErrorHandler handler) Deprecated.Add a delegate to the end of the current collection.voidhandle(Exception thrownException, List<org.apache.kafka.clients.consumer.ConsumerRecord<?, ?>> records, org.apache.kafka.clients.consumer.Consumer<?, ?> consumer, MessageListenerContainer container) Deprecated.Handle the exception.voidsetErrorHandlers(Map<Class<? extends Throwable>, ContainerAwareErrorHandler> delegates) Deprecated.Set the delegate error handlers; aLinkedHashMapargument is recommended so that the delegates are searched in a known order.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.kafka.listener.ConsumerAwareErrorHandler
handleMethods inherited from interface org.springframework.kafka.listener.ContainerAwareErrorHandler
handleMethods inherited from interface org.springframework.kafka.listener.GenericErrorHandler
clearThreadState, isAckAfterHandle, setAckAfterHandleMethods inherited from interface org.springframework.kafka.listener.RemainingRecordsErrorHandler
handle
-
Constructor Details
-
ConditionalDelegatingErrorHandler
Deprecated.Construct an instance with a default error handler that will be invoked if the exception has no matches.- Parameters:
defaultErrorHandler- the default error handler.
-
-
Method Details
-
setErrorHandlers
Deprecated.Set the delegate error handlers; aLinkedHashMapargument is recommended so that the delegates are searched in a known order.- Parameters:
delegates- the delegates.
-
addDelegate
Deprecated.Add a delegate to the end of the current collection.- Parameters:
throwable- the throwable for this handler.handler- the handler.
-
handle
public void handle(Exception thrownException, @Nullable List<org.apache.kafka.clients.consumer.ConsumerRecord<?, ?>> records, org.apache.kafka.clients.consumer.Consumer<?, ?> consumer, MessageListenerContainer container) Deprecated.Description copied from interface:ErrorHandlerHandle the exception.- Specified by:
handlein interfaceConsumerAwareErrorHandler- Specified by:
handlein interfaceContainerAwareErrorHandler- Specified by:
handlein interfaceErrorHandler- Specified by:
handlein interfaceRemainingRecordsErrorHandler- Parameters:
thrownException- the exception.records- the remaining records including the one that failed.consumer- the consumer.container- the container.
-
CommonDelegatingErrorHandler.