Package io.quarkus.runtime
Class LiveReloadConfig
- java.lang.Object
-
- io.quarkus.runtime.LiveReloadConfig
-
@ConfigRoot(phase=BUILD_AND_RUN_TIME_FIXED) public class LiveReloadConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description DurationconnectTimeoutThe amount of time to wait for a remote dev connect or reconnect(package private) booleaninstrumentationWhether or not Quarkus should enable its ability to not do a full restart when changes to classes are compatible with JVM instrumentation.Optional<String>passwordPassword used to use to connect to the remote dev-mode applicationDurationretryIntervalThe amount of time to wait between attempts when connecting to the server side of remote devIntegerretryMaxAttemptsThe maximum number of attempts when connecting to the server side of remote devOptional<String>urlURL used to use to connect to the remote dev-mode applicationOptional<List<String>>watchedResourcesThe names of additional resource files to watch for changes, triggering a reload on change.
-
Constructor Summary
Constructors Constructor Description LiveReloadConfig()
-
-
-
Field Detail
-
instrumentation
@ConfigItem(defaultValue="false") boolean instrumentation
Whether or not Quarkus should enable its ability to not do a full restart when changes to classes are compatible with JVM instrumentation. If this is set to true, Quarkus will perform class redefinition when possible.
-
watchedResources
@ConfigItem public Optional<List<String>> watchedResources
The names of additional resource files to watch for changes, triggering a reload on change. Directories are not supported.
-
password
@ConfigItem public Optional<String> password
Password used to use to connect to the remote dev-mode application
-
url
@ConfigItem public Optional<String> url
URL used to use to connect to the remote dev-mode application
-
connectTimeout
@ConfigItem(defaultValue="30s") public Duration connectTimeout
The amount of time to wait for a remote dev connect or reconnect
-
retryInterval
@ConfigItem(defaultValue="2s") public Duration retryInterval
The amount of time to wait between attempts when connecting to the server side of remote dev
-
retryMaxAttempts
@ConfigItem(defaultValue="10") public Integer retryMaxAttempts
The maximum number of attempts when connecting to the server side of remote dev
-
-