microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
sample/src/main/java/module-info.java
20lines · modeblame
5188e3fdKirk Pepperdine4 years ago | 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
| 4 | /** | |
| 5 | * Contains an Aggregator and an Aggregation | |
| 6 | */ | |
aa986897Christian Stein4 years ago | 7 | module com.microsoft.gctoolkit.sample { |
8b6201adChristian Stein4 years ago | 8 | requires com.microsoft.gctoolkit.api; |
5188e3fdKirk Pepperdine4 years ago | 9 | requires java.logging; |
| 10 | | |
8d88dfc6Bruno Borges4 years ago | 11 | exports com.microsoft.gctoolkit.sample; |
6df51a36David Grieve4 years ago | 12 | |
d96119e6kabutz4 years ago | 13 | exports com.microsoft.gctoolkit.sample.aggregation to |
e74e68d3Kirk Pepperdine3 years ago | 14 | com.microsoft.gctoolkit.api; |
d96119e6kabutz4 years ago | 15 | |
| 16 | provides com.microsoft.gctoolkit.aggregator.Aggregation with | |
49a86dfbKirk Pepperdine4 years ago | 17 | com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary, |
| 18 | com.microsoft.gctoolkit.sample.aggregation.PauseTimeSummary, | |
| 19 | com.microsoft.gctoolkit.sample.aggregation.CollectionCycleCountsSummary; | |
5188e3fdKirk Pepperdine4 years ago | 20 | } |