Uses of Class
org.pipecraft.pipes.utils.QueueItem
-
Packages that use QueueItem Package Description org.pipecraft.pipes.sync.inter org.pipecraft.pipes.sync.source org.pipecraft.pipes.terminal org.pipecraft.pipes.utils -
-
Uses of QueueItem in org.pipecraft.pipes.sync.inter
Constructor parameters in org.pipecraft.pipes.sync.inter with type arguments of type QueueItem Constructor Description AsyncToSyncPipe(AsyncPipe<T> inputPipe, BlockingQueue<QueueItem<T>> queue)ConstructorQueuePipe(Pipe<T> inputPipe, BlockingQueue<QueueItem<T>> queue)Constructor -
Uses of QueueItem in org.pipecraft.pipes.sync.source
Constructor parameters in org.pipecraft.pipes.sync.source with type arguments of type QueueItem Constructor Description QueueReaderPipe(BlockingQueue<QueueItem<T>> queue)Constructor -
Uses of QueueItem in org.pipecraft.pipes.terminal
Constructor parameters in org.pipecraft.pipes.terminal with type arguments of type QueueItem Constructor Description QueueWriterPipe(Pipe<T> inputPipe, BlockingQueue<QueueItem<T>> queue)Constructor -
Uses of QueueItem in org.pipecraft.pipes.utils
Methods in org.pipecraft.pipes.utils that return QueueItem Modifier and Type Method Description static <T> QueueItem<T>QueueItem. end()static <T> QueueItem<T>QueueItem. error(Throwable e)static <T> QueueItem<T>QueueItem. of(T item)
-