Package com.lmax.disruptor.dsl
Class ExceptionHandlerWrapper<T>
java.lang.Object
com.lmax.disruptor.dsl.ExceptionHandlerWrapper<T>
- All Implemented Interfaces:
ExceptionHandler<T>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate ExceptionHandler<? super T> voidhandleEventException(Throwable ex, long sequence, T event) Strategy for handling uncaught exceptions when processing an event.voidCallback to notify of an exception duringLifecycleAware.onShutdown()voidCallback to notify of an exception duringLifecycleAware.onStart()voidswitchTo(ExceptionHandler<? super T> exceptionHandler)
-
Field Details
-
delegate
-
-
Constructor Details
-
ExceptionHandlerWrapper
public ExceptionHandlerWrapper()
-
-
Method Details
-
switchTo
-
handleEventException
Description copied from interface:ExceptionHandlerStrategy for handling uncaught exceptions when processing an event.
If the strategy wishes to terminate further processing by the
BatchEventProcessorthen it should throw aRuntimeException.- Specified by:
handleEventExceptionin interfaceExceptionHandler<T>- Parameters:
ex- the exception that propagated from theEventHandler.sequence- of the event which cause the exception.event- being processed when the exception occurred. This can be null.
-
handleOnStartException
Description copied from interface:ExceptionHandlerCallback to notify of an exception duringLifecycleAware.onStart()- Specified by:
handleOnStartExceptionin interfaceExceptionHandler<T>- Parameters:
ex- throw during the starting process.
-
handleOnShutdownException
Description copied from interface:ExceptionHandlerCallback to notify of an exception duringLifecycleAware.onShutdown()- Specified by:
handleOnShutdownExceptionin interfaceExceptionHandler<T>- Parameters:
ex- throw during the shutdown process.
-
getExceptionHandler
-