-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44581 from gsmet/3.17.0-backports-1
[3.17] 3.17.0 backports 1
- Loading branch information
Showing
128 changed files
with
2,520 additions
and
710 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
20 changes: 20 additions & 0 deletions
20
core/deployment/src/main/java/io/quarkus/deployment/builditem/NativeMonitoringBuildItem.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.quarkus.deployment.builditem; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
import io.quarkus.deployment.pkg.NativeConfig; | ||
|
||
/** | ||
* A build item that indicates whether native monitoring is enabled and which option from {@link NativeConfig.MonitoringOption}. | ||
* To be used in the native image generation. | ||
*/ | ||
public final class NativeMonitoringBuildItem extends MultiBuildItem { | ||
private final NativeConfig.MonitoringOption option; | ||
|
||
public NativeMonitoringBuildItem(NativeConfig.MonitoringOption option) { | ||
this.option = option; | ||
} | ||
|
||
public NativeConfig.MonitoringOption getOption() { | ||
return this.option; | ||
} | ||
} |
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
Oops, something went wrong.