Uses of Interface
org.jctools.queues.MessagePassingQueue
-
Packages that use MessagePassingQueue 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.atomic.unpadded org.jctools.queues.unpadded org.jctools.queues.varhandle org.jctools.queues.varhandle.unpadded -
-
Uses of MessagePassingQueue in org.jctools.queues
Classes in org.jctools.queues that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedQueue<E>A base data structure for concurrent linked queues.(package private) classBaseLinkedQueueConsumerNodeRef<E>(package private) classBaseLinkedQueuePad0<E>(package private) classBaseLinkedQueuePad1<E>(package private) classBaseLinkedQueuePad2<E>(package private) classBaseLinkedQueueProducerNodeRef<E>(package private) classBaseMpscLinkedArrayQueue<E>An MPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks of the initial size.(package private) classBaseSpscLinkedArrayQueue<E>(package private) classConcurrentCircularArrayQueue<E>Common functionality for array backed queues.classConcurrentSequencedCircularArrayQueue<E>classFFBuffer<E>(package private) classFFBufferConsumerField<E>(package private) classFFBufferL1Pad<E>(package private) classFFBufferL2Pad<E>(package private) classFFBufferL3Pad<E>(package private) classFFBufferProducerField<E>classMpmcArrayQueue<E>A Multi-Producer-Multi-Consumer queue based on aConcurrentCircularArrayQueue.(package private) classMpmcArrayQueueConsumerIndexField<E>(package private) classMpmcArrayQueueL1Pad<E>(package private) classMpmcArrayQueueL2Pad<E>(package private) classMpmcArrayQueueL3Pad<E>(package private) classMpmcArrayQueueProducerIndexField<E>classMpmcUnboundedXaddArrayQueue<E>An MPMC array queue which grows unbounded in linked chunks.
Differently fromMpmcArrayQueueit is designed to provide a better scaling when more producers are concurrently offering.
Users should be aware thatMpmcUnboundedXaddArrayQueue.poll()could spin while awaiting a new element to be available: to avoid this behaviourMpmcUnboundedXaddArrayQueue.relaxedPoll()should be used instead, accounting for the semantic differences between the twos.classMpscArrayQueue<E>A Multi-Producer-Single-Consumer queue based on aConcurrentCircularArrayQueue.(package private) classMpscArrayQueueConsumerIndexField<E>(package private) classMpscArrayQueueL1Pad<E>(package private) classMpscArrayQueueL2Pad<E>(package private) classMpscArrayQueueL3Pad<E>(package private) classMpscArrayQueueMidPad<E>(package private) classMpscArrayQueueProducerIndexField<E>(package private) classMpscArrayQueueProducerLimitField<E>classMpscBlockingConsumerArrayQueue<E>This is a partial implementation of theBlockingQueueon the consumer side only on top of the mechanics described inBaseMpscLinkedArrayQueue, but with the reservation bit used for blocking rather than resizing in this instance.classMpscChunkedArrayQueue<E>An MPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks of the initial size.(package private) classMpscChunkedArrayQueueColdProducerFields<E>classMpscCompoundQueue<E>(package private) classMpscCompoundQueueColdFields<E>(package private) classMpscCompoundQueueConsumerQueueIndex<E>(package private) classMpscCompoundQueueL0Pad<E>Use a set number of parallel MPSC queues to diffuse the contention on tail.(package private) classMpscCompoundQueueMidPad<E>classMpscGrowableArrayQueue<E>An MPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks, doubling theirs size every time until the full blown backing array is used.classMpscLinkedQueue<E>This is a Java port of the MPSC algorithm as presented on 1024 Cores by D.classMpscRelaxedArrayQueue<E>This class is still work in progress, please do not pick up for production use just yet.classMpscSequencedArrayQueue<E>A Multi-Producer-Single-Consumer queue based on same algorithm used forMpmcArrayQueuebut with the appropriate weakening of constraints on offer.(package private) classMpscSequencedArrayQueueConsumerField<E>(package private) classMpscSequencedArrayQueueL1Pad<E>(package private) classMpscSequencedArrayQueueL2Pad<E>(package private) classMpscSequencedArrayQueueProducerField<E>classMpscUnboundedArrayQueue<E>An MPSC array queue which starts at initialCapacity and grows indefinitely in linked chunks of the initial size.classMpscUnboundedXaddArrayQueue<E>An MPSC array queue which grows unbounded in linked chunks.
Differently fromMpscUnboundedArrayQueueit is designed to provide a better scaling when more producers are concurrently offering.
Users should be aware thatMpscUnboundedXaddArrayQueue.poll()could spin while awaiting a new element to be available: to avoid this behaviourMpscUnboundedXaddArrayQueue.relaxedPoll()should be used instead, accounting for the semantic differences between the twos.(package private) classMpUnboundedXaddArrayQueue<R extends MpUnboundedXaddChunk<R,E>,E>Common infrastructure for the XADD queues.classSpmcArrayQueue<E>(package private) classSpmcArrayQueueConsumerIndexField<E>(package private) classSpmcArrayQueueL1Pad<E>(package private) classSpmcArrayQueueL2Pad<E>(package private) classSpmcArrayQueueL3Pad<E>(package private) classSpmcArrayQueueMidPad<E>(package private) classSpmcArrayQueueProducerIndexCacheField<E>(package private) classSpmcArrayQueueProducerIndexField<E>classSpscArrayQueue<E>A Single-Producer-Single-Consumer queue backed by a pre-allocated buffer.(package private) classSpscArrayQueueColdField<E>(package private) classSpscArrayQueueConsumerIndexField<E>(package private) classSpscArrayQueueL1Pad<E>(package private) classSpscArrayQueueL2Pad<E>(package private) classSpscArrayQueueL3Pad<E>(package private) classSpscArrayQueueProducerIndexFields<E>classSpscChunkedArrayQueue<E>An SPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks of the initial size.classSpscGrowableArrayQueue<E>An SPSC array queue which starts at initialCapacity and grows to maxCapacity in linked chunks, doubling theirs size every time until the full blown backing array is used.classSpscLinkedQueue<E>This is a weakened version of the MPSC algorithm as presented on 1024 Cores by D.classSpscUnboundedArrayQueue<E>An SPSC array queue which starts at initialCapacity and grows indefinitely in linked chunks of the initial size. -
Uses of MessagePassingQueue in org.jctools.queues.atomic
Classes in org.jctools.queues.atomic that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedAtomicQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicQueueConsumerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicQueuePad0<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicQueuePad1<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicQueuePad2<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicQueueProducerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseMpscLinkedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseSpscLinkedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classConcurrentCircularAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classConcurrentSequencedCircularAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classMpmcAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicArrayQueueProducerIndexField<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.(package private) classMpscAtomicArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicArrayQueueProducerLimitField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classMpscChunkedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.(package private) classMpscChunkedAtomicArrayQueueColdProducerFields<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classMpscGrowableAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classMpscLinkedAtomicQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classMpscRelaxedAtomicArrayQueue<E>classMpscUnboundedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator 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.(package private) classSpmcAtomicArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueProducerIndexCacheField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicArrayQueueProducerIndexField<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.(package private) classSpscAtomicArrayQueueColdField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicArrayQueueProducerIndexFields<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicArrayQueueGenerator which can found in the jctools-build module.classSpscChunkedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classSpscGrowableAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classSpscLinkedAtomicQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module.classSpscUnboundedAtomicArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.JavaParsingAtomicLinkedQueueGenerator which can found in the jctools-build module. -
Uses of MessagePassingQueue in org.jctools.queues.atomic.unpadded
Classes in org.jctools.queues.atomic.unpadded that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedAtomicUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicUnpaddedQueueConsumerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicUnpaddedQueuePad0<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicUnpaddedQueuePad1<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicUnpaddedQueuePad2<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedAtomicUnpaddedQueueProducerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseMpscLinkedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseSpscLinkedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classConcurrentCircularAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classConcurrentSequencedCircularAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpmcAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcAtomicUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpscAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscAtomicUnpaddedArrayQueueProducerLimitField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpscChunkedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classMpscChunkedAtomicUnpaddedArrayQueueColdProducerFields<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscGrowableAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscLinkedAtomicUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscUnboundedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpmcAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueProducerIndexCacheField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcAtomicUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classSpscAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueColdField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscAtomicUnpaddedArrayQueueProducerIndexFields<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedArrayQueueGenerator which can found in the jctools-build module.classSpscChunkedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscGrowableAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscLinkedAtomicUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscUnboundedAtomicUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.atomic.unpadded.JavaParsingAtomicUnpaddedLinkedQueueGenerator which can found in the jctools-build module. -
Uses of MessagePassingQueue in org.jctools.queues.unpadded
Classes in org.jctools.queues.unpadded that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedUnpaddedQueueConsumerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedUnpaddedQueuePad0<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedUnpaddedQueuePad1<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedUnpaddedQueuePad2<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedUnpaddedQueueProducerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseMpscLinkedUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classBaseSpscLinkedUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classConcurrentCircularUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.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.(package private) classMpmcUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpmcUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpmcUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpmcUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpmcUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpscChunkedUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscChunkedUnpaddedArrayQueueColdProducerFields<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpscGrowableUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpscLinkedUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classMpscUnboundedUnpaddedArrayQueue<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.(package private) classMpscUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classMpscUnpaddedArrayQueueProducerLimitField<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.(package private) classSpmcUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueProducerIndexCacheField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpmcUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpscChunkedUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpscGrowableUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpscLinkedUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.classSpscUnboundedUnpaddedArrayQueue<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.(package private) classSpscUnpaddedArrayQueueColdField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpscUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpscUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpscUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpscUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module.(package private) classSpscUnpaddedArrayQueueProducerIndexFields<E>NOTE: This class was automatically generated by org.jctools.queues.unpadded.JavaParsingUnpaddedQueueGenerator which can found in the jctools-build module. -
Uses of MessagePassingQueue in org.jctools.queues.varhandle
Classes in org.jctools.queues.varhandle that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedVarHandleQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleQueueConsumerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleQueuePad0<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleQueuePad1<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleQueuePad2<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleQueueProducerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseMpscLinkedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseSpscLinkedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classConcurrentCircularVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classConcurrentSequencedCircularVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classMpmcVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classMpscBlockingConsumerVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classMpscChunkedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.(package private) classMpscChunkedVarHandleArrayQueueColdProducerFields<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classMpscGrowableVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classMpscLinkedVarHandleQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classMpscUnboundedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classMpscVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleArrayQueueProducerLimitField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classSpmcVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueProducerIndexCacheField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.classSpscChunkedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classSpscGrowableVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classSpscLinkedVarHandleQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classSpscUnboundedVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleLinkedQueueGenerator which can found in the jctools-build module.classSpscVarHandleArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueColdField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleArrayQueueProducerIndexFields<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.JavaParsingVarHandleArrayQueueGenerator which can found in the jctools-build module. -
Uses of MessagePassingQueue in org.jctools.queues.varhandle.unpadded
Classes in org.jctools.queues.varhandle.unpadded that implement MessagePassingQueue Modifier and Type Class Description (package private) classBaseLinkedVarHandleUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleUnpaddedQueueConsumerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleUnpaddedQueuePad0<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleUnpaddedQueuePad1<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleUnpaddedQueuePad2<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseLinkedVarHandleUnpaddedQueueProducerNodeRef<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseMpscLinkedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classBaseSpscLinkedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classConcurrentCircularVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classConcurrentSequencedCircularVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpmcVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpmcVarHandleUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpscBlockingConsumerVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classMpscChunkedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.(package private) classMpscChunkedVarHandleUnpaddedArrayQueueColdProducerFields<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscGrowableVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscLinkedVarHandleUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscUnboundedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classMpscVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classMpscVarHandleUnpaddedArrayQueueProducerLimitField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classSpmcVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueMidPad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueProducerIndexCacheField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpmcVarHandleUnpaddedArrayQueueProducerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.classSpscChunkedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscGrowableVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscLinkedVarHandleUnpaddedQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscUnboundedVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedLinkedQueueGenerator which can found in the jctools-build module.classSpscVarHandleUnpaddedArrayQueue<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueColdField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueConsumerIndexField<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueL1Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueL2Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueL3Pad<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.(package private) classSpscVarHandleUnpaddedArrayQueueProducerIndexFields<E>NOTE: This class was automatically generated by org.jctools.queues.varhandle.unpadded.JavaParsingVarHandleUnpaddedArrayQueueGenerator which can found in the jctools-build module.
-