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 isConcurrentLinkedQueue
which is an unbounded multi-producer, multi-consumer queue which is further encumbered by the need to implement the full range ofQueue
methods.org.jctools.queues.alt org.jctools.queues.atomic org.jctools.queues.blocking 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> Queue<E>
QueueFactory. newQueue(ConcurrentQueueSpec qs)
Deprecated. -
Uses of ConcurrentQueueSpec in org.jctools.queues.alt
Methods in org.jctools.queues.alt with parameters of type ConcurrentQueueSpec Modifier and Type Method Description static <E> ConcurrentQueue<E>
ConcurrentQueueFactory. newQueue(ConcurrentQueueSpec qs)
-
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> Queue<E>
AtomicQueueFactory. newQueue(ConcurrentQueueSpec qs)
-
Uses of ConcurrentQueueSpec in org.jctools.queues.blocking
Methods in org.jctools.queues.blocking with parameters of type ConcurrentQueueSpec Modifier and Type Method Description static <E> BlockingQueue<E>
BlockingQueueFactory. newBlockingQueue(ConcurrentQueueSpec qs)
static <E> BlockingQueue<E>
BlockingQueueFactory. newBlockingQueue(ConcurrentQueueSpec qs, Class<? extends TakeStrategy> takeStratClass, Class<? extends PutStrategy> putStratClass)
boolean
McParkTakeStrategy. supportsSpec(ConcurrentQueueSpec qs)
boolean
PutStrategy. supportsSpec(ConcurrentQueueSpec qs)
boolean
ScParkTakeStrategy. supportsSpec(ConcurrentQueueSpec qs)
boolean
TakeStrategy. supportsSpec(ConcurrentQueueSpec qs)
boolean
YieldPutStrategy. supportsSpec(ConcurrentQueueSpec qs)
boolean
YieldTakeStrategy. supportsSpec(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 ConcurrentQueueSpec
ConcurrentQueueSpec. createBoundedMpmc(int capacity)
Deprecated.static ConcurrentQueueSpec
ConcurrentQueueSpec. createBoundedMpsc(int capacity)
Deprecated.static ConcurrentQueueSpec
ConcurrentQueueSpec. createBoundedSpmc(int capacity)
Deprecated.static ConcurrentQueueSpec
ConcurrentQueueSpec. createBoundedSpsc(int capacity)
Deprecated.
-