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(java.lang.Object object)
           
 java.lang.Object take()
           
 

Method Detail

add

void add(java.lang.Object object)

take

java.lang.Object take()
                      throws java.lang.InterruptedException
Throws:
java.lang.InterruptedException


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