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 com.sourcethought.simpledaemon.SimpleDaemon.java

/**
 *
 * @author cloudera
 */
public class SimpleDaemon implements Daemon {

From source file ke.co.pixie.daemon.JavaDaemon.java

/**
 * <p>Java UNIX daemon template.</p>
 * <p>Title: JavaDaemon.java</p>
 * <p>Description: This class implements the following methods to enable the
 * Java Daemon:<br /><br />
 * <ul>

From source file com.microrisc.opengateway.OpenGateway.java

/**
 *
 * @author spinarr
 */
public class OpenGateway implements Daemon {

From source file com.threecrickets.scripturian.ScripturianDaemon.java

/**
 * Delegates to {@link Main}, using the <a
 * href="http://commons.apache.org/daemon/">Apache Commons Daemon</a>.
 * 
 * @author Tal Liron
 */

From source file org.nodel.nodelhost.Service.java

/**
 * For NT / Unix daemons.
 * 
 * NT would normally use a service wrapper that calls the 'start' and 'stop' static methods.
 * 
 * Unix would use the Daemon interface and the 'start' and 'stop' instance methods.

From source file pl.chilldev.commons.jsonrpc.daemon.AbstractApplication.java

/**
 * Base daemon application class.
 */
public abstract class AbstractApplication implements Daemon, DaemonUserSignal {
    /**
     * Logger.

From source file com.yahoo.athenz.zms.ZMSDaemon.java

public class ZMSDaemon implements Daemon {

    private String[] args = null;

    public void init(DaemonContext context) throws Exception {
        args = context.getArguments();

From source file com.yahoo.athenz.zts.ZTSDaemon.java

public class ZTSDaemon implements Daemon {

    private String[] args = null;

    public void init(DaemonContext context) throws Exception {
        args = context.getArguments();

From source file com.boundary.sdk.event.BoundaryEventDaemon.java

public class BoundaryEventDaemon extends EventApplication implements Daemon {

    private static Logger LOG = LoggerFactory.getLogger(BoundaryEventDaemon.class);

    public BoundaryEventDaemon() {

From source file com.yahoo.athenz.container.AthenzDaemon.java

public class AthenzDaemon implements Daemon {

    private String[] args = null;

    public void init(DaemonContext context) throws Exception {
        args = context.getArguments();