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