Uses of Interface
com.lmax.disruptor.BatchRewindStrategy
-
Packages that use BatchRewindStrategy Package Description com.lmax.disruptor The Disruptor is a concurrent programming framework for exchanging and coordinating work as a continuous series of events. -
-
Uses of BatchRewindStrategy in com.lmax.disruptor
Classes in com.lmax.disruptor that implement BatchRewindStrategy Modifier and Type Class Description classEventuallyGiveUpBatchRewindStrategyStrategy for handling a rewindableException that will eventually delegate the exception to theExceptionHandlerafter a specified number of attempts have been made.classNanosecondPauseBatchRewindStrategyStrategy for handling a rewindableException that will pause for a specified amount of nanos.classSimpleBatchRewindStrategyBatch rewind strategy that always rewindsMethods in com.lmax.disruptor with parameters of type BatchRewindStrategy Modifier and Type Method Description voidBatchEventProcessor. setRewindStrategy(BatchRewindStrategy batchRewindStrategy)Set a newBatchRewindStrategyfor customizing how to handle aRewindableExceptionWhich can include whether the batch should be rewound and reattempted, or simply thrown and move on to the next sequence the default is aSimpleBatchRewindStrategywhich always rewinds
-