microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8ca0d90addcc16f55a21765d87b41b02ff9f96bb

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