public class FCQueue<T> extends IStructure<T>
IStructure.Backoff, IStructure.Node<T>
abort
Constructor and Description |
---|
FCQueue() |
Modifier and Type | Method and Description |
---|---|
void |
add(T value)
add a object of type T
|
boolean |
isEmpty()
Method to tell if the data structure is empty (contains no elements).
|
java.lang.String |
name() |
T |
remove()
retrieve a object of type T
|
int |
size() |
add, get, registerThread, shutdown
public void add(T value)
IStructure
add
in class IStructure<T>
public T remove()
IStructure
remove
in class IStructure<T>
public int size()
public java.lang.String name()
public boolean isEmpty()
IStructure
isEmpty
in class IStructure<T>