Package org.tigris.subversion.javahl
Interface OutputInterface
-
- All Known Implementing Classes:
SVNInputStream.Outputer
public interface OutputInterface
Interface to send data to subversion used by SVNAdmin.load.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
close the outputint
write(byte[] data)
write the bytes in data to java
-
-
-
Method Detail
-
write
int write(byte[] data) throws java.io.IOException
write the bytes in data to java- Parameters:
data
- the data to be writtem- Throws:
java.io.IOException
- throw in case of problems.
-
close
void close() throws java.io.IOException
close the output- Throws:
java.io.IOException
- throw in case of problems.
-
-