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 · modepreview

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

import com.microsoft.gctoolkit.aggregator.Aggregation;
import com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary;

/**
 * Contains an Aggregator and an Aggregation
 */
module gctoolkit.sample {

    requires com.microsoft.gctoolkit.api;
    requires com.microsoft.gctoolkit.vertx;
    requires java.logging;

    exports com.microsoft.gctoolkit.sample.aggregation to com.microsoft.gctoolkit.vertx;

    provides Aggregation with HeapOccupancyAfterCollectionSummary;
}