microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
vertx/src/main/java/module-info.java
17lines · modeblame
3ce8e8bbKirk Pepperdine4 years ago | 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
| 4 | /** | |
5509b357Kirk Pepperdine4 years ago | 5 | * Contains a vertx based implementation of GCToolKit. The vertx implementation is an internal module. |
| 6 | * @provides com.microsoft.gctoolkit.jvm.JavaVirtualMachine | |
3ce8e8bbKirk Pepperdine4 years ago | 7 | */ |
8b6201adChristian Stein4 years ago | 8 | module com.microsoft.gctoolkit.vertx { |
d96119e6kabutz4 years ago | 9 | requires com.microsoft.gctoolkit.api; |
| 10 | requires io.vertx.core; | |
| 11 | requires java.logging; | |
| 12 | | |
e74e68d3Kirk Pepperdine3 years ago | 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; | |
3ce8e8bbKirk Pepperdine4 years ago | 15 | |
| 16 | | |
54054950Yifeng Jin4 years ago | 17 | } |