本文整理汇总了Java中com.thoughtworks.go.plugin.api.task.JobConsoleLogger.readErrorOf方法的典型用法代码示例。如果您正苦于以下问题:Java JobConsoleLogger.readErrorOf方法的具体用法?Java JobConsoleLogger.readErrorOf怎么用?Java JobConsoleLogger.readErrorOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.thoughtworks.go.plugin.api.task.JobConsoleLogger
的用法示例。
在下文中一共展示了JobConsoleLogger.readErrorOf方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import com.thoughtworks.go.plugin.api.task.JobConsoleLogger; //导入方法依赖的package包/类
/**
* Executes the actual Gradle build.
*
* @param builder the process builder
* @param console the log output
* @return the process return value
* @throws IOException if any error occurs during I/O operation
* @throws InterruptedException if any error occurs during process execution
*/
private static int execute(ProcessBuilder builder, JobConsoleLogger console) throws IOException, InterruptedException {
Process process = null;
try {
process = builder.start();
console.readOutputOf(process.getInputStream());
console.readErrorOf(process.getErrorStream());
return process.waitFor();
} finally {
if (process != null) {
process.destroy();
}
}
}
示例2: execute
import com.thoughtworks.go.plugin.api.task.JobConsoleLogger; //导入方法依赖的package包/类
private int execute(ProcessBuilder builder, JobConsoleLogger console) throws IOException, InterruptedException {
Process process = null;
try {
process = builder.start();
console.readOutputOf(process.getInputStream());
console.readErrorOf(process.getErrorStream());
return process.waitFor();
} finally {
if (process != null) {
process.destroy();
}
}
}