Package org.eclipse.jgit.util
Class FS.ExecutionResult
java.lang.Object
org.eclipse.jgit.util.FS.ExecutionResult
- Enclosing class:
- FS
Result of an executed process. The caller is responsible to close the
contained
TemporaryBuffer
s- Since:
- 4.2
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionResult
(org.eclipse.jgit.util.TemporaryBuffer stdout, org.eclipse.jgit.util.TemporaryBuffer stderr, int rc) -
Method Summary
-
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
-