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());
}
Aggregations