microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

19lines · modeblame

5188e3fdKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
5509b357Kirk Pepperdine4 years ago4import com.microsoft.gctoolkit.aggregator.Aggregation;
5import com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary;
6
5188e3fdKirk Pepperdine4 years ago7/**
8* Contains an Aggregator and an Aggregation
9*/
aa986897Christian Stein4 years ago10module com.microsoft.gctoolkit.sample {
5188e3fdKirk Pepperdine4 years ago11
8b6201adChristian Stein4 years ago12requires com.microsoft.gctoolkit.api;
13requires com.microsoft.gctoolkit.vertx;
5188e3fdKirk Pepperdine4 years ago14requires java.logging;
15
8b6201adChristian Stein4 years ago16exports com.microsoft.gctoolkit.sample.aggregation to com.microsoft.gctoolkit.vertx;
6df51a36David Grieve4 years ago17
5509b357Kirk Pepperdine4 years ago18provides Aggregation with HeapOccupancyAfterCollectionSummary;
5188e3fdKirk Pepperdine4 years ago19}