com.ibm.redback.threadpool
Class RBQueue

java.lang.Object
  |
  +--com.ibm.redback.threadpool.RBQueue

public class RBQueue
extends java.lang.Object


Constructor Summary
RBQueue()
           
 
Method Summary
 void add(java.lang.Object obj)
          This method adds the object to the existing queue.
 java.lang.Object getNext()
          This method gets the next object from the queue.
 int getSize()
          This method gets size of the existing queue.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RBQueue

public RBQueue()
Method Detail

add

public void add(java.lang.Object obj)
This method adds the object to the existing queue.
Parameters:
object - to be added to the queue is passed as a parameter.

getNext

public java.lang.Object getNext()
This method gets the next object from the queue.

getSize

public int getSize()
This method gets size of the existing queue.