Package org.apache.sshd.common.util.io
Class CloseableEmptyInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.sshd.common.util.io.EmptyInputStream
-
- org.apache.sshd.common.util.io.CloseableEmptyInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Channel
public class CloseableEmptyInputStream extends EmptyInputStream implements Channel
A/dev/null
stream that can be closed - in which case it will throwIOException
s if invoked after being closed- Author:
- Apache MINA SSHD Project
-
-
Field Summary
-
Fields inherited from class org.apache.sshd.common.util.io.EmptyInputStream
DEV_NULL
-
-
Constructor Summary
Constructors Constructor Description CloseableEmptyInputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
boolean
isOpen()
int
read()
int
read(byte[] b, int off, int len)
void
reset()
long
skip(long n)
-
Methods inherited from class org.apache.sshd.common.util.io.EmptyInputStream
mark
-
Methods inherited from class java.io.InputStream
markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, transferTo
-
-
-
-
Method Detail
-
available
public int available() throws IOException
- Overrides:
available
in classEmptyInputStream
- Throws:
IOException
-
read
public int read() throws IOException
- Overrides:
read
in classEmptyInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classEmptyInputStream
- Throws:
IOException
-
skip
public long skip(long n) throws IOException
- Overrides:
skip
in classEmptyInputStream
- Throws:
IOException
-
reset
public void reset() throws IOException
- Overrides:
reset
in classEmptyInputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceChannel
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
-