本文整理汇总了Java中com.zaxxer.nuprocess.NuAbstractProcessHandler类的典型用法代码示例。如果您正苦于以下问题:Java NuAbstractProcessHandler类的具体用法?Java NuAbstractProcessHandler怎么用?Java NuAbstractProcessHandler使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
NuAbstractProcessHandler类属于com.zaxxer.nuprocess包,在下文中一共展示了NuAbstractProcessHandler类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: cat
import com.zaxxer.nuprocess.NuAbstractProcessHandler; //导入依赖的package包/类
@Benchmark
public void cat() throws Exception {
NuProcessBuilder builder = new NuProcessBuilder("cat", TEST_FILE);
builder.setProcessListener(new NuAbstractProcessHandler() {
private final CRC32 crc32 = new CRC32();
@Override
public void onExit(int statusCode) {
long crc = crc32.getValue();
if (crc != TEST_CRC32) {
System.err.println("Incorrect CRC32 checksum (" + crc + "); file corruption?");
}
}
@Override
public void onStdout(ByteBuffer buffer, boolean closed) {
// the contents of the file are run through CRC32 just to "do" something with them
// note that update(ByteBuffer) requires Java 8. it's been selected because it doesn't
// inflate the measured allocation rate by allocating buffers internally
crc32.update(buffer);
}
});
NuProcess process = builder.start();
int exitCode = process.waitFor(5L, TimeUnit.MINUTES);
if (exitCode == Integer.MIN_VALUE) {
process.destroy(false);
throw new AssertionError(process + " took longer than 5 minutes to complete");
}
if (exitCode != 0) {
throw new AssertionError(process + " failed (Exit code: " + exitCode + ")");
}
}