Uses of Class
org.jctools.queues.spec.ConcurrentQueueSpec
-
Packages that use ConcurrentQueueSpec 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.spec -
-
Uses of ConcurrentQueueSpec in org.jctools.queues
Methods in org.jctools.queues with parameters of type ConcurrentQueueSpec Modifier and Type Method Description static <E> java.util.Queue<E>QueueFactory. newQueue(ConcurrentQueueSpec qs)Deprecated. -
Uses of ConcurrentQueueSpec in org.jctools.queues.atomic
Methods in org.jctools.queues.atomic with parameters of type ConcurrentQueueSpec Modifier and Type Method Description static <E> java.util.Queue<E>AtomicQueueFactory. newQueue(ConcurrentQueueSpec qs) -
Uses of ConcurrentQueueSpec in org.jctools.queues.spec
Methods in org.jctools.queues.spec that return ConcurrentQueueSpec Modifier and Type Method Description static ConcurrentQueueSpecConcurrentQueueSpec. createBoundedMpmc(int capacity)Deprecated.static ConcurrentQueueSpecConcurrentQueueSpec. createBoundedMpsc(int capacity)Deprecated.static ConcurrentQueueSpecConcurrentQueueSpec. createBoundedSpmc(int capacity)Deprecated.static ConcurrentQueueSpecConcurrentQueueSpec. createBoundedSpsc(int capacity)Deprecated.
-