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

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

The newest version!
package io.quarkus.runtime;

import io.quarkus.runtime.annotations.Recorder;

/**
 * Stores the optimizations to execute for SnapStart.
 */
@Recorder
public class SnapStartRecorder {

    public static boolean enabled = false;
    public static boolean fullWarmup = false;

    public void register(boolean fw) {
        enabled = true;
        fullWarmup = fw;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy