microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0d97e5547e9f337cc52c6e27611ab13ea26ce33d

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

16lines · modeblame

5188e3fdKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5* Contains an Aggregator and an Aggregation
6*/
7module censum.sample {
8
9provides com.microsoft.censum.aggregator.Aggregation with com.microsoft.censum.sample.aggregation.HeapOccupancyAfterCollectionSummary;
1889b72aKirk Pepperdine4 years ago10exports com.microsoft.censum.sample.aggregation to censum.vertx;
5188e3fdKirk Pepperdine4 years ago11
12requires censum.api;
13requires censum.vertx;
14requires java.logging;
15
16}