microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
25a8f22beda4f3d4a2b5b9e4231edc0f7e6e7d84

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