Uses of Class
com.lmax.disruptor.BatchEventProcessor
Packages that use BatchEventProcessor
Package
Description
The Disruptor is a concurrent programming framework for exchanging and coordinating work as a continuous series of events.
-
Uses of BatchEventProcessor in com.lmax.disruptor
Methods in com.lmax.disruptor that return BatchEventProcessorModifier and TypeMethodDescription<T> BatchEventProcessor<T> BatchEventProcessorBuilder.build(DataProvider<T> dataProvider, SequenceBarrier sequenceBarrier, EventHandler<? super T> eventHandler) Construct aEventProcessorthat will automatically track the progress by updating its sequence when theEventHandler.onEvent(Object, long, boolean)method returns.<T> BatchEventProcessor<T> BatchEventProcessorBuilder.build(DataProvider<T> dataProvider, SequenceBarrier sequenceBarrier, RewindableEventHandler<? super T> rewindableEventHandler, BatchRewindStrategy batchRewindStrategy) Construct aEventProcessorthat will automatically track the progress by updating its sequence when theEventHandler.onEvent(Object, long, boolean)method returns.