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

org.yamcs.http.AbstractHttpService Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.http;

import org.yamcs.InitException;
import org.yamcs.logging.Log;

import com.google.common.util.concurrent.AbstractService;

/**
 * An HTTP-specific subservice whose lifecycle is managed by {@link HttpServer}.
 * 

* HTTP services may participate in the start-stop phases of the {@link HttpServer}. */ public abstract class AbstractHttpService extends AbstractService { protected Log log = new Log(getClass()); public abstract void init(HttpServer httpServer) throws InitException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy