public class SVNInputStream.Outputer extends java.lang.Object implements OutputInterface
Modifier and Type | Field and Description |
---|---|
(package private) boolean |
closed
flag that the other side of the pipe has been closed
|
(package private) java.io.PipedOutputStream |
myStream
my side of the pipe
|
Constructor and Description |
---|
Outputer(SVNInputStream myMaster)
build a new connection object
|
Modifier and Type | Method and Description |
---|---|
void |
close()
close the output
|
int |
write(byte[] data)
write the bytes in data to java
|
java.io.PipedOutputStream myStream
boolean closed
Outputer(SVNInputStream myMaster) throws java.io.IOException
myMaster
- the other side of the pipejava.io.IOException
public int write(byte[] data) throws java.io.IOException
write
in interface OutputInterface
data
- the data to be writtenjava.io.IOException
- throw in case of problems.public void close() throws java.io.IOException
close
in interface OutputInterface
java.io.IOException
- throw in case of problems.