public abstract static class Queues.SimpleQueue<E> extends Object implements BlockingQueue<E>
Modifier and Type | Class and Description |
---|---|
protected static class |
Queues.SimpleQueue.Node<E> |
protected static class |
Queues.SimpleQueue.NodeSerializer<E> |
Modifier and Type | Field and Description |
---|---|
protected Engine |
engine |
protected Atomic.Long |
head |
protected ReentrantLock[] |
locks |
protected Serializer<Queues.SimpleQueue.Node<E>> |
nodeSerializer |
protected Serializer<E> |
serializer |
protected static int |
TICK |
protected boolean |
useLocks |
Constructor and Description |
---|
SimpleQueue(Engine engine,
Serializer<E> serializer,
long headRecidRef,
boolean useLocks) |
Modifier and Type | Method and Description |
---|---|
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
void |
close()
Closes underlying storage and releases all resources.
|
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
int |
drainTo(Collection<? super E> c) |
int |
drainTo(Collection<? super E> c,
int maxElements) |
E |
element() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
offer(E e) |
boolean |
offer(E e,
long timeout,
TimeUnit unit) |
E |
peek() |
E |
poll() |
E |
poll(long timeout,
TimeUnit unit) |
void |
put(E e) |
int |
remainingCapacity() |
E |
remove() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
E |
take() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
add
equals, hashCode, parallelStream, removeIf, spliterator, stream
protected final boolean useLocks
protected final ReentrantLock[] locks
protected static final int TICK
protected final Engine engine
protected final Serializer<E> serializer
protected final Atomic.Long head
protected final Serializer<Queues.SimpleQueue.Node<E>> nodeSerializer
public SimpleQueue(Engine engine, Serializer<E> serializer, long headRecidRef, boolean useLocks)
public void close()
public void clear()
clear
in interface Collection<E>
public boolean offer(E e)
public void put(E e) throws InterruptedException
put
in interface BlockingQueue<E>
InterruptedException
public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException
offer
in interface BlockingQueue<E>
InterruptedException
public E take() throws InterruptedException
take
in interface BlockingQueue<E>
InterruptedException
public E poll(long timeout, TimeUnit unit) throws InterruptedException
poll
in interface BlockingQueue<E>
InterruptedException
public int drainTo(Collection<? super E> c)
drainTo
in interface BlockingQueue<E>
public int drainTo(Collection<? super E> c, int maxElements)
drainTo
in interface BlockingQueue<E>
public int remainingCapacity()
remainingCapacity
in interface BlockingQueue<E>
public boolean isEmpty()
isEmpty
in interface Collection<E>
public int size()
size
in interface Collection<E>
public boolean contains(Object o)
contains
in interface Collection<E>
contains
in interface BlockingQueue<E>
public Object[] toArray()
toArray
in interface Collection<E>
public <T> T[] toArray(T[] a)
toArray
in interface Collection<E>
public boolean remove(Object o)
remove
in interface Collection<E>
remove
in interface BlockingQueue<E>
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<E>
public boolean addAll(Collection<? extends E> c)
addAll
in interface Collection<E>
public boolean removeAll(Collection<?> c)
removeAll
in interface Collection<E>
public boolean retainAll(Collection<?> c)
retainAll
in interface Collection<E>
Copyright © 2018. All rights reserved.