Package org.tigris.subversion.javahl
Class SVNOutputStream.Inputer
- java.lang.Object
-
- org.tigris.subversion.javahl.SVNOutputStream.Inputer
-
- All Implemented Interfaces:
InputInterface
- Enclosing class:
- SVNOutputStream
public class SVNOutputStream.Inputer extends java.lang.Object implements InputInterface
this class implements the connection to SVNAdmin
-
-
Constructor Summary
Constructors Constructor Description Inputer(SVNOutputStream myMaster)build a new connection object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()close the inputintread(byte[] data)read the number of data.length bytes from input.
-
-
-
Constructor Detail
-
Inputer
Inputer(SVNOutputStream myMaster) throws java.io.IOException
build a new connection object- Parameters:
myMaster- the other side of the pipe- Throws:
java.io.IOException
-
-
Method Detail
-
read
public int read(byte[] data) throws java.io.IOExceptionread the number of data.length bytes from input.- Specified by:
readin interfaceInputInterface- Parameters:
data- array to store the read bytes.- Throws:
java.io.IOException- throw in case of problems.
-
close
public void close() throws java.io.IOExceptionclose the input- Specified by:
closein interfaceInputInterface- Throws:
java.io.IOException- throw in case of problems.
-
-