Package org.tigris.subversion.javahl
Interface InputInterface
-
- All Known Implementing Classes:
SVNOutputStream.Inputer
public interface InputInterfaceInterface for data to be received from subversion used for SVNAdmin.load and SVNAdmin.dump
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()close the inputintread(byte[] data)read the number of data.length bytes from input.
-
-
-
Method Detail
-
read
int read(byte[] data) throws java.io.IOException
read the number of data.length bytes from input.- Parameters:
data- array to store the read bytes.- Throws:
java.io.IOException- throw in case of problems.
-
close
void close() throws java.io.IOExceptionclose the input- Throws:
java.io.IOException- throw in case of problems.
-
-