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

io.quarkus.runtime.ExecutionMode Maven / Gradle / Ivy

The newest version!
package io.quarkus.runtime;

/**
 * The runtime execution mode.
 */
public enum ExecutionMode {

    /**
     * Static initializiation.
     */
    STATIC_INIT,

    /**
     * Runtime initialization.
     */
    RUNTIME_INIT,

    /**
     * The application is running.
     */
    RUNNING,

    UNSET,
    ;

    public static ExecutionMode current() {
        return ExecutionModeManager.getExecutionMode();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy