microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6df51a364cd042d5da49bc694a4bc443f0639136

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/api/src/main/java/module-info.java

27lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5 * Contains the core of the Censum API.
6 * @uses com.microsoft.censum.jvm.JavaVirtualMachine
7 * @uses com.microsoft.censum.aggregator.Aggregator
8 */
9module censum.api {
10
11 exports com.microsoft.censum;
12 exports com.microsoft.censum.aggregator;
13 exports com.microsoft.censum.event;
14 exports com.microsoft.censum.event.g1gc;
15 exports com.microsoft.censum.event.generational;
16 exports com.microsoft.censum.event.jvm;
17 exports com.microsoft.censum.event.shenandoah;
18 exports com.microsoft.censum.event.zgc;
19 exports com.microsoft.censum.io;
20 exports com.microsoft.censum.jvm;
21 exports com.microsoft.censum.time;
22 exports com.microsoft.censum.collections;
23 requires java.logging;
24
25 uses com.microsoft.censum.jvm.JavaVirtualMachine;
26 uses com.microsoft.censum.aggregator.Aggregation;
27}
28