| java.lang.Object org.zkoss.zkex.zul.impl.OperationQueue
OperationQueue | public class OperationQueue (Code) | | A queue for storing
Operation and is thread-safe.
This class is for model sharer developer only, you rarely need to use this class.
author: Dennis.Chen since: 3.0.0 |
clearListener | void clearListener()(Code) | | |
element | public Operation element()(Code) | | Get an operation from queue, doesn't remove it.
the first operation in queue, null if not such operation. |
fireQueueUnavailable | void fireQueueUnavailable(Desktop desktop)(Code) | | |
hasElement | public boolean hasElement()(Code) | | Check is there any operation in queue.
true if there exist any operation in queue. |
next | public Operation next()(Code) | | Get an operation from queue, and then remove it.
the first operation in queue, null if not such operation. |
put | public void put(Operation op)(Code) | | Put an operation to queue
Parameters: op - the operation. |
remove | public void remove()(Code) | | Remove the first operation in queue if exist.
|
|
|