| java.io.PipedInputStream org.tigris.subversion.javahl.SVNInputStream
SVNInputStream | public class SVNInputStream extends PipedInputStream (Code) | | This class connects a java.io.PipedInputStream to a OutputInterface.
The outherside of the Pipe must read by another thread, or deadlocks
will occure
|
Method Summary | |
public void | close() Closes this input stream and releases any system resources associated
with the stream. | public OutputInterface | getOutputer() |
myOutputer | Outputer myOutputer(Code) | | my connection to put data into subversion
|
SVNInputStream | public SVNInputStream() throws IOException(Code) | | Creates a SVNInputStream so that it is connected with an internal
PipedOutputStream
throws: IOException - |
close | public void close() throws IOException(Code) | | Closes this input stream and releases any system resources associated
with the stream.
The close method of InputStream does
nothing.
exception: IOException - if an I/O error occurs. |
getOutputer | public OutputInterface getOutputer()(Code) | | Get the Interface to connect to SVNAdmin
the connetion interface |
|
|