You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A unique identifier for an instance of an application. Development and test modes will have different IDs. The application ID will persist across continuous test restarts and dev mode restarts. It mirrors the lifecycle of a curated application.
Build Item that can be used to queue shutdown tasks that are run when the `io.quarkus.bootstrap.app.CuratedApplication` is closed.
603
-
For production applications, this will be at the end of the Maven/Gradle build. For dev mode applications, this will be when dev mode shuts down. For tests, it will generally be at the end of the test run. However, for continuous testing this will be when the outer dev mode process shuts down. For unit style tests, this will usually be the end of the test.
614
+
For production applications, this will be at the end of the Maven/Gradle build. For dev mode applications, this will be when dev mode shuts down. For tests, it will generally be at the end of the test run. However, for continuous testing this will be when the outer dev mode process shuts down. For extension unit tests, this will usually be the end of the test.
BuildItem for running dev services. Combines injected configs to the application with container id (if it exists). Processors are expected to return this build item not only when the dev service first starts, but also if a running dev service already exists. `RunningDevService` helps to manage the lifecycle of the running dev service.
824
+
BuildItem for running dev services. Combines injected configs to the application with container id (if it exists).
825
+
Processors are expected to return this build item not only when the dev service first starts, but also if a running dev service already exists.
826
+
`RunningDevService` helps to manage the lifecycle of the running dev service.
0 commit comments