Example usage for org.apache.commons.exec ExecuteWatchdog subclass-usage

List of usage examples for org.apache.commons.exec ExecuteWatchdog subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.exec ExecuteWatchdog subclass-usage.

Usage

From source file org.lucidj.launcher.LauncherWatchdog.java

class LauncherWatchdog extends ExecuteWatchdog {
    private volatile boolean starting = true;
    private volatile Throwable throwable;

    LauncherWatchdog(long timeout) {
        super(timeout);

From source file org.cloudifysource.shell.commands.TestRecipeWatchdog.java

/**********
 * Wraps the standard commons-exec watchdog and adds a timeout logging message.
 * 
 * @author barakme
 * 
 */