E - the type of the listpublic final class AsynchronList<E>
extends java.util.LinkedList<E>
List implementation to provide a blocking list for the
PrimaryDataDirectory.listPrimaryDataEntities() function.| Constructor and Description |
|---|
AsynchronList() |
AsynchronList(java.util.Collection<? extends E> collection) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
checkAllElementsPresent() |
protected void |
checkVolatileElement(int index) |
void |
clear() |
E |
get(int index) |
int |
indexOf(java.lang.Object elem) |
boolean |
isEmpty() |
boolean |
isStopped() |
java.util.Iterator<E> |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator<E> |
listIterator() |
java.util.ListIterator<E> |
listIterator(int index) |
void |
notifyNewDataAvailable() |
void |
notifyNoMoreNewData() |
E |
remove(int index) |
E |
set(int index,
E elem) |
void |
setStopped() |
int |
size()
beware!!!
|
java.lang.Object[] |
toArray() |
add, add, addAll, addAll, addFirst, addLast, clone, contains, descendingIterator, element, getFirst, getLast, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, spliterator, toArraycontainsAll, removeAll, retainAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitpublic AsynchronList()
public AsynchronList(java.util.Collection<? extends E> collection)
collection - the collection to create AsynchronListprotected void checkAllElementsPresent()
protected void checkVolatileElement(int index)
public void clear()
public E get(int index)
public int indexOf(java.lang.Object elem)
public boolean isEmpty()
public java.util.Iterator<E> iterator()
public int lastIndexOf(java.lang.Object o)
public java.util.ListIterator<E> listIterator()
public java.util.ListIterator<E> listIterator(int index)
public void notifyNewDataAvailable()
public void notifyNoMoreNewData()
public E remove(int index)
public int size()
public java.lang.Object[] toArray()
public boolean isStopped()
public void setStopped()