microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
045a372f4e22f00dc7d4b0f992f88fa69f1a6311

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

17lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5 * Contains a vertx based implementation of GCToolKit. The vertx implementation is an internal module.
6 * @provides com.microsoft.gctoolkit.jvm.JavaVirtualMachine
7 */
8module com.microsoft.gctoolkit.vertx {
9 requires com.microsoft.gctoolkit.api;
10 requires io.vertx.core;
11 requires java.logging;
12
13 provides com.microsoft.gctoolkit.message.DataSourceChannel with com.microsoft.gctoolkit.vertx.VertxDataSourceChannel;
14 provides com.microsoft.gctoolkit.message.JVMEventChannel with com.microsoft.gctoolkit.vertx.VertxJVMEventChannel;
15
16
17}
18