Class TestExecutionQueue<T extends TestExecution>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractQueue<E>
-
- java.util.concurrent.LinkedBlockingDeque<T>
-
- cloud.filibuster.junit.server.core.TestExecutionQueue<T>
-
- All Implemented Interfaces:
TestExecutionCollection<T>,java.io.Serializable,java.lang.Iterable<T>,java.util.Collection<T>,java.util.concurrent.BlockingDeque<T>,java.util.concurrent.BlockingQueue<T>,java.util.Deque<T>,java.util.Queue<T>
public class TestExecutionQueue<T extends TestExecution> extends java.util.concurrent.LinkedBlockingDeque<T> implements TestExecutionCollection<T>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TestExecutionQueue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTestExecution(T testExecution)booleancontainsAbstractTestExecution(TestExecution te)booleancontainsTestExecution(T testExecution)TremoveAndReturnNextTestExecution()-
Methods inherited from class java.util.concurrent.LinkedBlockingDeque
add, addAll, addFirst, addLast, clear, contains, descendingIterator, drainTo, drainTo, element, forEach, getFirst, getLast, iterator, offer, offer, offerFirst, offerFirst, offerLast, offerLast, peek, peekFirst, peekLast, poll, poll, pollFirst, pollFirst, pollLast, pollLast, pop, push, put, putFirst, putLast, remainingCapacity, remove, remove, removeAll, removeFirst, removeFirstOccurrence, removeIf, removeLast, removeLastOccurrence, retainAll, size, spliterator, take, takeFirst, takeLast, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
containsAll, equals, hashCode, isEmpty, parallelStream, stream, toArray
-
Methods inherited from interface cloud.filibuster.junit.server.core.TestExecutionCollection
isEmpty, size
-
-
-
-
Method Detail
-
containsAbstractTestExecution
public boolean containsAbstractTestExecution(TestExecution te)
- Specified by:
containsAbstractTestExecutionin interfaceTestExecutionCollection<T extends TestExecution>
-
containsTestExecution
public boolean containsTestExecution(T testExecution)
- Specified by:
containsTestExecutionin interfaceTestExecutionCollection<T extends TestExecution>
-
removeAndReturnNextTestExecution
public T removeAndReturnNextTestExecution()
- Specified by:
removeAndReturnNextTestExecutionin interfaceTestExecutionCollection<T extends TestExecution>
-
addTestExecution
public void addTestExecution(T testExecution)
- Specified by:
addTestExecutionin interfaceTestExecutionCollection<T extends TestExecution>
-
-