microsoft/gctoolkit
Publicmirrored fromhttps://github.com/microsoft/gctoolkitAvailable
sample/src/main/java/module-info.java
19lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | import com.microsoft.gctoolkit.aggregator.Aggregation; |
| 5 | import com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary; |
| 6 | |
| 7 | /** |
| 8 | * Contains an Aggregator and an Aggregation |
| 9 | */ |
| 10 | module gctoolkit.sample { |
| 11 | |
| 12 | requires com.microsoft.gctoolkit.api; |
| 13 | requires com.microsoft.gctoolkit.vertx; |
| 14 | requires java.logging; |
| 15 | |
| 16 | exports com.microsoft.gctoolkit.sample.aggregation to com.microsoft.gctoolkit.vertx; |
| 17 | |
| 18 | provides Aggregation with HeapOccupancyAfterCollectionSummary; |
| 19 | } |