microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
11cd0c0d4ea83f9017065cd67dfe38aba722091e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

sample/src/main/java/module-info.java

19lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4import com.microsoft.gctoolkit.aggregator.Aggregation;
5import com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary;
6
7/**
8 * Contains an Aggregator and an Aggregation
9 */
10module 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}