Class FS.ExecutionResult

java.lang.Object
org.eclipse.jgit.util.FS.ExecutionResult
Enclosing class:
FS

public static class FS.ExecutionResult extends Object
Result of an executed process. The caller is responsible to close the contained TemporaryBuffers
Since:
4.2
  • Constructor Details

    • ExecutionResult

      public ExecutionResult(org.eclipse.jgit.util.TemporaryBuffer stdout, org.eclipse.jgit.util.TemporaryBuffer stderr, int rc)
      Parameters:
      stdout -
      stderr -
      rc -
  • Method Details

    • getStdout

      public org.eclipse.jgit.util.TemporaryBuffer getStdout()
      Returns:
      buffered standard output stream
    • getStderr

      public org.eclipse.jgit.util.TemporaryBuffer getStderr()
      Returns:
      buffered standard error stream
    • getRc

      public int getRc()
      Returns:
      the return code of the process