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