Package | Description |
---|---|
com.lmax.disruptor |
The Disruptor is a concurrent programming framework for exchanging and coordinating work as a continuous series of events.
|
Modifier and Type | Field | Description |
---|---|---|
static InsufficientCapacityException |
InsufficientCapacityException.INSTANCE |
Modifier and Type | Method | Description |
---|---|---|
long |
MultiProducerSequencer.tryNext() |
|
long |
MultiProducerSequencer.tryNext(int n) |
|
long |
RingBuffer.tryNext() |
Increment and return the next sequence for the ring buffer.
|
long |
RingBuffer.tryNext(int n) |
The same functionality as
RingBuffer.tryNext() , but allows the caller to attempt
to claim the next n sequences. |
long |
Sequenced.tryNext() |
Attempt to claim the next event in sequence for publishing.
|
long |
Sequenced.tryNext(int n) |
Attempt to claim the next n events in sequence for publishing.
|
long |
SingleProducerSequencer.tryNext() |
|
long |
SingleProducerSequencer.tryNext(int n) |
Copyright © 2019. All rights reserved.