|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.firebirdsql.pool.BlockingStack
@Deprecated public final class BlockingStack
Object stack that implements a blocking LIFO (last-in-first-out) stack. The implementation will block when the list is empty.
Constructor Summary | |
---|---|
BlockingStack()
Deprecated. |
Method Summary | |
---|---|
boolean |
isEmpty()
Deprecated. Checks to see if the stack is empty. |
java.lang.Object |
peek()
Deprecated. Return, but do not remove, the object at the top of the stack. |
java.lang.Object |
pop()
Deprecated. Return and remove the object at the top of the stack. |
java.lang.Object |
pop(long msec)
Deprecated. Return and remove the object at the top of the stack only if it is available within the specified number of milliseconds, otherwise return null. |
void |
push(java.lang.Object item)
Deprecated. Push an object onto the stack. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BlockingStack()
Method Detail |
---|
public boolean isEmpty()
public java.lang.Object peek()
public java.lang.Object pop() throws java.lang.InterruptedException
java.lang.InterruptedException
public java.lang.Object pop(long msec) throws java.lang.InterruptedException
msec
- to wait for an object before returning null.
java.lang.InterruptedException
public void push(java.lang.Object item) throws java.lang.InterruptedException
item
- to be pushed onto the stack.
java.lang.InterruptedException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |