org.apache.maven.surefire.util.internal
Interface BlockingQueue

All Known Implementing Classes:
FunkyTwoThreadBlockingQueue, Java13BlockingQueue, Java15BlockingQueue, TwoThreadBlockingQueue

public interface BlockingQueue

A very simple blocking queue that might have stricter constraints than the standard jdk1.5 blockingqueues.

Author:
Kristian Rosenvold

Method Summary
 void add(Object object)
           
 Object take()
           
 

Method Detail

add

void add(Object object)

take

Object take()
            throws InterruptedException
Throws:
InterruptedException


Copyright © 2004-2011 The Apache Software Foundation. All Rights Reserved.