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

org.gwizard.web.WebServerService Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package org.gwizard.web;

import com.google.common.util.concurrent.AbstractIdleService;
import com.google.inject.Inject;
import org.gwizard.services.Services;
import lombok.extern.slf4j.Slf4j;

/**
 * A Guava service to startup / shutdown the web server.
 */
@Slf4j
public class WebServerService extends AbstractIdleService {
    private final WebServer server;

    @Inject
    public WebServerService(Services services, WebServer server) {
        this.server = server;

        services.add(this);
    }

    @Override
    protected void startUp() throws Exception {
        log.debug("Starting web server");
        server.start();
    }

    @Override
    protected void shutDown() throws Exception {
        log.debug("Stopping web server");
        server.stop();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy