|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ExceptionHandler | |
|---|---|
| com.lmax.disruptor | The Disruptor is a concurrent programming framework for exchanging and coordinating work as a continuous series of events. |
| com.lmax.disruptor.dsl | |
| Uses of ExceptionHandler in com.lmax.disruptor |
|---|
| Classes in com.lmax.disruptor that implement ExceptionHandler | |
|---|---|
class |
FatalExceptionHandler
Convenience implementation of an exception handler that using standard JDK logging to log the exception as Level.SEVERE and re-throw it wrapped in a RuntimeException |
class |
IgnoreExceptionHandler
Convenience implementation of an exception handler that using standard JDK logging to log the exception as Level.INFO |
| Methods in com.lmax.disruptor with parameters of type ExceptionHandler | |
|---|---|
void |
BatchEventProcessor.setExceptionHandler(ExceptionHandler exceptionHandler)
Set a new ExceptionHandler for handling exceptions propagated out of the BatchEventProcessor |
| Constructors in com.lmax.disruptor with parameters of type ExceptionHandler | |
|---|---|
WorkerPool(EventFactory<T> eventFactory,
ClaimStrategy claimStrategy,
WaitStrategy waitStrategy,
ExceptionHandler exceptionHandler,
WorkHandler<T>... workHandlers)
Construct a work pool with an internal RingBuffer for convenience. |
|
WorkerPool(RingBuffer<T> ringBuffer,
SequenceBarrier sequenceBarrier,
ExceptionHandler exceptionHandler,
WorkHandler<T>... workHandlers)
Create a worker pool to enable an array of WorkHandlers to consume published sequences. |
|
WorkProcessor(RingBuffer<T> ringBuffer,
SequenceBarrier sequenceBarrier,
WorkHandler<T> workHandler,
ExceptionHandler exceptionHandler,
Sequence workSequence)
Construct a WorkProcessor. |
|
| Uses of ExceptionHandler in com.lmax.disruptor.dsl |
|---|
| Methods in com.lmax.disruptor.dsl with parameters of type ExceptionHandler | |
|---|---|
void |
Disruptor.handleExceptionsWith(ExceptionHandler exceptionHandler)
Specify an exception handler to be used for any future event handlers. |
void |
ExceptionHandlerSetting.with(ExceptionHandler exceptionHandler)
Specify the ExceptionHandler to use with the event handler. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||