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

ru.yandex.qatools.camelot.common.ReloadableService Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package ru.yandex.qatools.camelot.common;

/**
 * @author Ilya Sadykov (mailto: [email protected])
 */
public interface ReloadableService {

    /**
     * Initialize service
     */
    void init();

    /**
     * Reload state and start service classes
     */
    void reloadAndStart();

    /**
     * Stop service classes, reload and start them again
     */
    void reload();

    /**
     * Stop service classes
     */
    void stop();

    /**
     * Indicates that service is currently reloading its context
     */
    boolean isLoading();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy