jar

uk.co.boundedbuffer : low-latency-primitive-concurrent-queues

Maven & Gradle

Feb 24, 2014
67 stars

Low Latency Primitive Concurrent Queues · An low latency, lock free, primitive bounded blocking queue backed by an int[]. This class mimics the interface of {@linkplain java.util.concurrent.BlockingQueue BlockingQueue}, however works with primitive ints rather than objects, so is unable to actually implement the BlockingQueue. This class takes advantage of the Unsafe.putOrderedObject, which allows us to create non-blocking code with guaranteed writes. These writes will not be re-orderd by instruction reordering. Under the covers it uses the faster store-store barrier, rather than the the slower store-load barrier, which is used when doing a volatile write. One of the trade off with this improved performance is we are limited to a single producer, single consumer.

Table Of Contents

Latest Version

Download uk.co.boundedbuffer : low-latency-primitive-concurrent-queues JAR file - Latest Versions:

All Versions

Download uk.co.boundedbuffer : low-latency-primitive-concurrent-queues JAR file - All Versions:

Version Vulnerabilities Size Updated
1.0.x

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window low-latency-primitive-concurrent-queues-1.0.0.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

uk.co.boundedbuffer

├─ uk.co.boundedbuffer.AbstractBlockingQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingByteQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingDoubleQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingFloatQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingIntQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingLongQueue.class - [JAR]

├─ uk.co.boundedbuffer.ConcurrentBlockingShortQueue.class - [JAR]