microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e5a6726f039e2273be8b190f6f4a0395704093c3

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

15lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5 * Contains an Aggregator and an Aggregation
6 */
7module censum.sample {
8
9 provides com.microsoft.censum.aggregator.Aggregation with com.microsoft.censum.sample.aggregation.HeapOccupancyAfterCollectionSummary;
10
11 requires censum.api;
12 requires censum.vertx;
13 requires java.logging;
14
15}
16