Interface OutputInterface

All Known Implementing Classes:
SVNInputStream.Outputer

public interface OutputInterface
Interface to send data to subversion used by SVNAdmin.load.
  • Method Summary

    Modifier and Type Method Description
    void close()
    close the output
    int write​(byte[] data)
    write the bytes in data to java
  • Method Details

    • write

      int write​(byte[] data) throws IOException
      write the bytes in data to java
      Parameters:
      data - the data to be writtem
      Throws:
      IOException - throw in case of problems.
    • close

      void close() throws IOException
      close the output
      Throws:
      IOException - throw in case of problems.