sirius.kernel.Startable Maven / Gradle / Ivy
/*
* Made with all the love in the world
* by scireum in Remshalden, Germany
*
* Copyright by scireum GmbH
* http://www.scireum.de - [email protected]
*/
package sirius.kernel;
import sirius.kernel.di.std.Priorized;
/**
* Classes implementing this interface get notified once the framework is started.
*
* In contrast to {@link sirius.kernel.di.Initializable} this might be called a bit later, since the system is first
* initialized and then started up. However, one can assume that all annotations have been processed and dependent parts
* can be accessed.
*
* The framework lifecycle is split into three phases:
*
* - {@link Startable}: Each startable component is invoked during startup.
* - {@link Stoppable}: Each stoppable component is invoked during framework shutdown.
* - {@link Killable}: The the shutdown process has to wait for a task to finish, this can be used to block until a
* task is completed.
*
*/
public interface Startable extends Priorized {
@Override
default int getPriority() {
return DEFAULT_PRIORITY;
}
/**
* Invoked when the framework starts up.
*/
void started();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy