- BlockingMultiArrayQueue<T> - Class in com.github.MultiArrayQueue
-
BlockingMultiArrayQueue is a simple, optionally bounded or unbounded, thread-safe (lock-based)
and (by itself) garbage-free FIFO Queue of Objects for Java.
- BlockingMultiArrayQueue() - Constructor for class com.github.MultiArrayQueue.BlockingMultiArrayQueue
-
Creates a BlockingMultiArrayQueue with default values:
named "Queue", with initial capacity 30 (size 31 of the first array of Objects), unbounded,
no fair ordering policy of the lock.
- BlockingMultiArrayQueue(String, int, int, boolean) - Constructor for class com.github.MultiArrayQueue.BlockingMultiArrayQueue
-
Creates a BlockingMultiArrayQueue with the given name, given capacity of the first array of Objects,
a limit of how many times the Queue is allowed to extend and the given decision about fair ordering policy
of the lock.