Package com.levigo.jadice.server.util
Class DynamicPipe.PipeInputStream
- java.lang.Object
-
- java.io.InputStream
-
- com.levigo.jadice.server.util.DynamicPipe.PipeInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
- Enclosing class:
- DynamicPipe
public class DynamicPipe.PipeInputStream extends InputStream
The output end of the pipe.
-
-
Constructor Summary
Constructors Constructor Description PipeInputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
int
read()
int
read(byte[] b, int off, int len)
-
Methods inherited from class java.io.InputStream
mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Method Detail
-
read
public int read() throws IOException
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
available
public int available() throws IOException
- Overrides:
available
in classInputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
-