public.javadoc.org.spincast.plugins.processutils.SyncExecutionResult.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-website Show documentation
Show all versions of spincast-website Show documentation
Source code for the https://www.spincast.org website.
SyncExecutionResult (org.spincast:spincast-framework 1.13.0 API)
org.spincast.plugins.processutils
Interface SyncExecutionResult
-
- All Known Implementing Classes:
- SyncExecutionResultDefault
public interface SyncExecutionResult
The result of the syncronous execution of an external program,
made using
executeSync
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods
Modifier and Type
Method and Description
int
getExitCode()
The exit code of the program.
List<String>
getSystemErrLines()
The System standard errors produced by the
executed program.
List<String>
getSystemOutLines()
The System standard output produced by the
executed program.
-
-
Method Detail
-
getExitCode
int getExitCode()
The exit code of the program.
-
getSystemOutLines
List<String> getSystemOutLines()
The System standard output produced by the
executed program.
Note that those lines will be available only
if the ExecutionOutputStrategy.BUFFER
strategy
is used!
-
getSystemErrLines
List<String> getSystemErrLines()
The System standard errors produced by the
executed program.
Note that those lines will be available only
if the ExecutionOutputStrategy.BUFFER
strategy
is used!
Copyright © 2019. All rights reserved.