Package org.tigris.subversion.javahl
Class SVNInputStream.Outputer
- java.lang.Object
-
- org.tigris.subversion.javahl.SVNInputStream.Outputer
-
- All Implemented Interfaces:
OutputInterface
- Enclosing class:
- SVNInputStream
public class SVNInputStream.Outputer extends java.lang.Object implements OutputInterface
this class implements the connection to SVNAdmin
-
-
Constructor Summary
Constructors Constructor Description Outputer(SVNInputStream myMaster)build a new connection object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()close the outputintwrite(byte[] data)write the bytes in data to java
-
-
-
Constructor Detail
-
Outputer
Outputer(SVNInputStream myMaster) throws java.io.IOException
build a new connection object- Parameters:
myMaster- the other side of the pipe- Throws:
java.io.IOException
-
-
Method Detail
-
write
public int write(byte[] data) throws java.io.IOExceptionwrite the bytes in data to java- Specified by:
writein interfaceOutputInterface- Parameters:
data- the data to be written- Throws:
java.io.IOException- throw in case of problems.
-
close
public void close() throws java.io.IOExceptionclose the output- Specified by:
closein interfaceOutputInterface- Throws:
java.io.IOException- throw in case of problems.
-
-