com.wavefront.common.Managed Maven / Gradle / Ivy
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();
}