Class Queue<T>
java.lang.Object
org.openide.util.Queue<T>
Deprecated.
Queue of objects. When there is no object in the queue the process
is suspended till some arrives.
Implementation appears to be LIFO.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Queue
public Queue()Deprecated.
-
-
Method Details
-
put
-
get
Deprecated.Gets an object from the queue. If there is no such object the thread is suspended until some object arrives- Returns:
- object from the queue
-
BlockingQueueinstead.