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

enkan.component.LifecycleManager Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package enkan.component;

/**
 * @author kawasima
 */
public class LifecycleManager {
    public static void start(SystemComponent component) {
        component.lifecycle().start(component);
    }

    public static void stop(SystemComponent component) {
        component.lifecycle().stop(component);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy