Search in sources :

Example 1 with SPSequence

use of com.questdb.mp.SPSequence in project questdb by bluestreak01.

the class JournalConcurrentIterator method start.

private void start() {
    this.buffer = new RingQueue<>(this, bufferSize);
    this.pubSeq = new SPSequence(bufferSize);
    this.subSeq = new SCSequence();
    this.pubSeq.then(subSeq).then(pubSeq);
    service.submit(getRunnable());
}
Also used : SCSequence(com.questdb.mp.SCSequence) SPSequence(com.questdb.mp.SPSequence)

Aggregations

SCSequence (com.questdb.mp.SCSequence)1 SPSequence (com.questdb.mp.SPSequence)1