Example usage for org.apache.commons.daemon Daemon interface-usage

List of usage examples for org.apache.commons.daemon Daemon interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.daemon Daemon interface-usage.

Usage

From source file es.upv.grycap.opengateway.core.OgDaemon.java

/**
 * Tools for starting applications as stand-alone processes.
 * @author Erik Torres <etserrano@gmail.com>
 * @since 0.0.1
 */
public abstract class OgDaemon implements Daemon {

From source file aphelion.server.ServerDaemon.java

/**
 *
 * @author Joris
 */
public class ServerDaemon implements Daemon {
    private static final Logger log = Logger.getLogger("aphelion.daemon");

From source file io.symcpe.hendrix.api.ApplicationManager.java

/**
 * Entry point class for Dropwizard app
 * 
 * @author ambud_sharma
 */
public class ApplicationManager extends Application<AppConfig> implements Daemon {

From source file com.srotya.tau.api.ApplicationManager.java

/**
 * Entry point class for Dropwizard app
 * 
 * @author ambud_sharma
 */
public class ApplicationManager extends Application<AppConfig> implements Daemon {

From source file com.piusvelte.taplock.server.TapLockServer.java

public class TapLockServer implements Daemon {

    public static final String ACTION_TOGGLE = "com.piusvelte.taplock.ACTION_TOGGLE";
    public static final String ACTION_UNLOCK = "com.piusvelte.taplock.ACTION_UNLOCK";
    public static final String ACTION_LOCK = "com.piusvelte.taplock.ACTION_LOCK";
    public static final String ACTION_PASSPHRASE = "com.piusvelte.taplock.ACTION_PASSPHRASE";

From source file catalina.startup.BootstrapService.java

/**
 * Special version of the Catalina bootstrap, designed to be invoked with JNI,
 * and designed to allow easier wrapping by system level components, which
 * would otherwise be confused by the asychronous startup and shutdown Catalina
 * uses. This class should be used to run Catalina as a system service under
 * Windows NT and clones.

From source file org.apache.catalina.startup.BootstrapService.java

/**
 * Special version of the Catalina bootstrap, designed to be invoked with JNI,
 * and designed to allow easier wrapping by system level components, which
 * would otherwise be confused by the asychronous startup and shutdown Catalina
 * uses. This class should be used to run Catalina as a system service under
 * Windows NT and clones.

From source file com.twentyn.search.substructure.Service.java

public class Service implements Daemon {
    private static final Logger LOGGER = LogManager.getFormatterLogger(Service.class);

    public static final CSVFormat TSV_FORMAT = CSVFormat.newFormat('\t').withRecordSeparator('\n').withQuote('"')
            .withIgnoreEmptyLines(true).withHeader();

From source file Logi.GSeries.Service.LogiGSKService.java

/**
 *
 * @author Mohamad Saada
 */
public class LogiGSKService implements Daemon {

From source file com.twentyn.reachables.order.Service.java

public class Service implements Daemon {
    private static final Logger LOGGER = LogManager.getFormatterLogger(Service.class);

    public static final String OPTION_CONFIG_FILE = "c";

    public static final List<Option.Builder> OPTION_BUILDERS = new ArrayList<Option.Builder>() {