Home » concurrent-sources » EDU.oswego.cs.dl.util.concurrent.misc » [javadoc | source]
EDU.oswego.cs.dl.util.concurrent.misc
public class: FIFOSlot [javadoc | source]
java.lang.Object
   EDU.oswego.cs.dl.util.concurrent.misc.FIFOSlot

All Implemented Interfaces:
    BoundedChannel

Constructor:
 public FIFOSlot() 
Method from EDU.oswego.cs.dl.util.concurrent.misc.FIFOSlot Summary:
capacity,   offer,   peek,   poll,   put,   take
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from EDU.oswego.cs.dl.util.concurrent.misc.FIFOSlot Detail:
 public int capacity() 
 public boolean offer(Object item,
    long msecs) throws InterruptedException 
 public Object peek() 
 public Object poll(long msecs) throws InterruptedException 
 public  void put(Object item) throws InterruptedException 
 public Object take() throws InterruptedException