org.openide.util
Class Queue
java.lang.Object
|
+--org.openide.util.Queue
- public class Queue
- extends Object
Queue of objects. When there is no object in the queue the process
is suspended till some arrives.
Constructor Summary |
Queue()
|
Method Summary |
Object |
get()
Gets an object from the queue. |
void |
put(Object o)
Adds new item. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Queue
public Queue()
put
public void put(Object o)
- Adds new item.
- Parameters:
o
- object to add
get
public Object get()
- 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
Built on December 12 2001. | Portions Copyright 1997-2001 Sun Microsystems, Inc. All rights reserved.