microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
74569f7f4fc7b33f990f16e8bb08b5f3d312f26d

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

17lines · 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
10 requires censum.api;
11 requires censum.vertx;
12 requires java.logging;
13
14 exports com.microsoft.censum.sample.aggregation to censum.vertx;
15
16 provides com.microsoft.censum.aggregator.Aggregation with com.microsoft.censum.sample.aggregation.HeapOccupancyAfterCollectionSummary;
17}
18