Package org.apache.sshd.common.channel
Class ChannelPipedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.sshd.common.channel.ChannelPipedOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable,java.nio.channels.Channel
public class ChannelPipedOutputStream extends java.io.OutputStream implements java.nio.channels.ChannelTODO Add javadoc
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]bprivate booleanclosedprivate ChannelPipedSinksink
-
Constructor Summary
Constructors Constructor Description ChannelPipedOutputStream(ChannelPipedSink sink)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()booleanisOpen()voidwrite(byte[] b, int off, int len)voidwrite(int i)
-
-
-
Field Detail
-
sink
private final ChannelPipedSink sink
-
b
private final byte[] b
-
closed
private boolean closed
-
-
Constructor Detail
-
ChannelPipedOutputStream
public ChannelPipedOutputStream(ChannelPipedSink sink)
-
-
Method Detail
-
write
public void write(int i) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpenin interfacejava.nio.channels.Channel
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.nio.channels.Channel- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-
-