Package org.apache.commons.io.input
Class QueueInputStream.Builder
- java.lang.Object
 - 
- org.apache.commons.io.build.AbstractSupplier<T,B>
 - 
- org.apache.commons.io.build.AbstractOriginSupplier<T,B>
 - 
- org.apache.commons.io.build.AbstractStreamBuilder<QueueInputStream,QueueInputStream.Builder>
 - 
- org.apache.commons.io.input.QueueInputStream.Builder
 
 
 
 
 
- 
- All Implemented Interfaces:
 IOSupplier<QueueInputStream>
- Enclosing class:
 - QueueInputStream
 
public static class QueueInputStream.Builder extends AbstractStreamBuilder<QueueInputStream,QueueInputStream.Builder>
Builds a newQueueInputStream.For example:
QueueInputStream s = QueueInputStream.builder() .setBlockingQueue(new LinkedBlockingQueue<>()) .setTimeout(Duration.ZERO) .get();- Since:
 - 2.12.0
 - See Also:
 get()
 
- 
- 
Constructor Summary
Constructors Constructor Description Builder() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueueInputStreamget()Builds a newQueueInputStream.QueueInputStream.BuildersetBlockingQueue(java.util.concurrent.BlockingQueue<java.lang.Integer> blockingQueue)Sets backing queue for the stream.QueueInputStream.BuildersetTimeout(java.time.Duration timeout)Sets the polling timeout.- 
Methods inherited from class org.apache.commons.io.build.AbstractStreamBuilder
getCharset, setBufferSize, setBufferSize, setBufferSizeChecker, setBufferSizeMax, setCharset, setCharset, setOpenOptions 
- 
Methods inherited from class org.apache.commons.io.build.AbstractOriginSupplier
setByteArray, setCharSequence, setFile, setFile, setInputStream, setOutputStream, setPath, setPath, setReader, setURI, setWriter 
- 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.commons.io.function.IOSupplier
asSupplier 
 - 
 
 - 
 
- 
- 
Method Detail
- 
get
public QueueInputStream get()
Builds a newQueueInputStream.This builder use the following aspects:
setBlockingQueue(BlockingQueue)- timeout
 
- Returns:
 - a new instance.
 
 
- 
setBlockingQueue
public QueueInputStream.Builder setBlockingQueue(java.util.concurrent.BlockingQueue<java.lang.Integer> blockingQueue)
Sets backing queue for the stream.- Parameters:
 blockingQueue- backing queue for the stream.- Returns:
 - this
 
 
- 
setTimeout
public QueueInputStream.Builder setTimeout(java.time.Duration timeout)
Sets the polling timeout.- Parameters:
 timeout- the polling timeout.- Returns:
 - this.
 
 
 - 
 
 -