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