当前页面:
在线文档首页 >
NetBeans API Javadoc 5.0.0
Queue (NetBeans Utilities API) - NetBeans API Javadoc 5.0.0
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