Uses of Class
com.lmax.disruptor.EventPoller
-
Packages that use EventPoller 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 EventPoller in com.lmax.disruptor
Methods in com.lmax.disruptor that return EventPoller Modifier and Type Method Description static <T> EventPoller<T>EventPoller. newInstance(DataProvider<T> dataProvider, Sequencer sequencer, Sequence sequence, Sequence cursorSequence, Sequence... gatingSequences)Creates an event poller.<T> EventPoller<T>AbstractSequencer. newPoller(DataProvider<T> dataProvider, Sequence... gatingSequences)Creates an event poller for this sequence that will use the supplied data provider and gating sequences.EventPoller<E>RingBuffer. newPoller(Sequence... gatingSequences)Creates an event poller for this ring buffer gated on the supplied sequences.<T> EventPoller<T>Sequencer. newPoller(DataProvider<T> provider, Sequence... gatingSequences)Creates an event poller from this sequencer
-