microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
318

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

17lines · modeblame

3ce8e8bbKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5509b357Kirk Pepperdine4 years ago5* Contains a vertx based implementation of GCToolKit. The vertx implementation is an internal module.
6* @provides com.microsoft.gctoolkit.jvm.JavaVirtualMachine
3ce8e8bbKirk Pepperdine4 years ago7*/
8b6201adChristian Stein4 years ago8module com.microsoft.gctoolkit.vertx {
d96119e6kabutz4 years ago9requires com.microsoft.gctoolkit.api;
10requires io.vertx.core;
11requires java.logging;
12
e74e68d3Kirk Pepperdine3 years ago13provides com.microsoft.gctoolkit.message.DataSourceChannel with com.microsoft.gctoolkit.vertx.VertxDataSourceChannel;
14provides com.microsoft.gctoolkit.message.JVMEventChannel with com.microsoft.gctoolkit.vertx.VertxJVMEventChannel;
3ce8e8bbKirk Pepperdine4 years ago15
16
54054950Yifeng Jin4 years ago17}