Uses of Interface
org.jctools.queues.SupportsIterator
-
Packages that use SupportsIterator Package Description org.jctools.queues This package aims to fill a gap in current JDK implementations in offering lock free (wait free where possible) queues for inter-thread message passing with finer grained guarantees and an emphasis on performance.
At the time of writing the only lock free queue available in the JDK isConcurrentLinkedQueuewhich is an unbounded multi-producer, multi-consumer queue which is further encumbered by the need to implement the full range ofQueuemethods.org.jctools.queues.atomic -
-
Uses of SupportsIterator in org.jctools.queues
Classes in org.jctools.queues that implement SupportsIterator Modifier and Type Class Description classFFBuffer<E>classMpmcArrayQueue<E>A Multi-Producer-Multi-Consumer queue based on aConcurrentCircularArrayQueue.classMpscArrayQueue<E>A Multi-Producer-Single-Consumer queue based on aConcurrentCircularArrayQueue.classMpscSequencedArrayQueue<E>A Multi-Producer-Single-Consumer queue based on same algorithm used forMpmcArrayQueuebut with the appropriate weakening of constraints on offer.classSpmcArrayQueue<E>classSpscArrayQueue<E>A Single-Producer-Single-Consumer queue backed by a pre-allocated buffer. -
Uses of SupportsIterator in org.jctools.queues.atomic
Classes in org.jctools.queues.atomic that implement SupportsIterator Modifier and Type Class Description classMpmcAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classMpscAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classSpmcAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classSpscAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.
-