Package io.quarkus.runtime.init
Interface InitRuntimeConfig
-
@ConfigMapping(prefix="quarkus") @ConfigRoot(phase=RUN_TIME) public interface InitRuntimeConfig
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InitRuntimeConfig.BooleanConverter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @io.smallrye.config.WithConverter(io.quarkus.runtime.init.InitRuntimeConfig.BooleanConverter.class) boolean
initAndExit()
true to quit exit right after the initialization.
-
-
-
Method Detail
-
initAndExit
@WithDefault("false") @WithConverter(BooleanConverter.class) @io.smallrye.config.WithConverter(io.quarkus.runtime.init.InitRuntimeConfig.BooleanConverter.class) boolean initAndExit()
true to quit exit right after the initialization. The option is not meant be used directly by users.
-
-