microsoft/gctoolkit
Publicmirrored fromhttps://github.com/microsoft/gctoolkitAvailable
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 | */ |
| 8 | module 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 | |