All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavefront.common.Managed Maven / Gradle / Ivy

There is a newer version: 9999.0
Show newest version
package com.wavefront.common;

/**
 * Background process that can be started and stopped.
 *
 * @author [email protected]
 */
public interface Managed {
  /**
   * Starts the process.
   */
  void start();

  /**
   * Stops the process.
   */
  void stop();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy