- java.lang.Object
-
- java.io.Reader
-
- org.jline.utils.NonBlockingReader
-
- org.jline.utils.NonBlockingPumpReader
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Readable
public class NonBlockingPumpReader extends NonBlockingReader
-
-
Field Summary
-
Fields inherited from class org.jline.utils.NonBlockingReader
EOF, READ_EXPIRED
-
-
Constructor Summary
Constructors Constructor Description NonBlockingPumpReader()
NonBlockingPumpReader(int bufferSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
Writer
getWriter()
protected int
read(long timeout, boolean isPeek)
Attempts to read a character from the input stream for a specific period of time.int
readBuffered(char[] b)
boolean
ready()
-
Methods inherited from class java.io.Reader
mark, markSupported, nullReader, read, read, reset, skip, transferTo
-
-
-
-
Method Detail
-
getWriter
public Writer getWriter()
-
available
public int available()
- Overrides:
available
in classNonBlockingReader
-
read
protected int read(long timeout, boolean isPeek) throws IOException
Description copied from class:NonBlockingReader
Attempts to read a character from the input stream for a specific period of time.- Specified by:
read
in classNonBlockingReader
- Parameters:
timeout
- The amount of time to wait for the characterisPeek
-true
if the character read must not be consumed- Returns:
- The character read, -1 if EOF is reached, or -2 if the read timed out.
- Throws:
IOException
- if anything wrong happens
-
readBuffered
public int readBuffered(char[] b) throws IOException
- Specified by:
readBuffered
in classNonBlockingReader
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classReader
- Throws:
IOException
-
-