forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
96 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcDevModeConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
package io.quarkus.arc.deployment; | ||
|
||
import io.quarkus.runtime.annotations.ConfigGroup; | ||
import io.quarkus.runtime.annotations.ConfigItem; | ||
import io.smallrye.config.WithDefault; | ||
|
||
@ConfigGroup | ||
public class ArcDevModeConfig { | ||
public interface ArcDevModeConfig { | ||
|
||
/** | ||
* If set to true then the container monitors business method invocations and fired events during the development mode. | ||
* <p> | ||
* NOTE: This config property should not be changed in the development mode as it requires a full rebuild of the application | ||
*/ | ||
@ConfigItem(defaultValue = "false") | ||
public boolean monitoringEnabled; | ||
@WithDefault("false") | ||
boolean monitoringEnabled(); | ||
|
||
/** | ||
* If set to true then the dependency graphs are generated and available in the Dev UI. | ||
*/ | ||
@ConfigItem(defaultValue = "true") | ||
public boolean generateDependencyGraphs; | ||
@WithDefault("true") | ||
boolean generateDependencyGraphs(); | ||
|
||
} |
Oops, something went wrong.