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 org.jctools.queues.unpadded -
-
Uses of SupportsIterator in org.jctools.queues
Classes in org.jctools.queues that implement SupportsIterator Modifier and Type Class Description classConcurrentSequencedCircularArrayQueue<E>classMpmcArrayQueue<E>A Multi-Producer-Multi-Consumer queue based on aConcurrentCircularArrayQueue.classMpscArrayQueue<E>A Multi-Producer-Single-Consumer queue based on aConcurrentCircularArrayQueue.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. -
Uses of SupportsIterator in org.jctools.queues.unpadded
Classes in org.jctools.queues.unpadded that implement SupportsIterator Modifier and Type Class Description classConcurrentSequencedCircularUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpmcUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpscUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpmcUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpscUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.
-