Refers to eclipse-vertx/vertx-http-proxy#92
Hi, I'm contributing the API in vertx-http-proxy and there's a method I need to access the vertx instance from the HttpClient object, but currently there's no way to do this.
It could if we export the HttpClientInternal interface, by moving it from io.vertx.core.internal.http.impl to io.vertx.core.internal.http, then I can call it like this:
// client is an instance of HttpClient
Vertx vertx = ((HttpClientInternal) client).vertx();
Should we perform this change? I can make a PR for it.
Refers to eclipse-vertx/vertx-http-proxy#92
Hi, I'm contributing the API in
vertx-http-proxyand there's a method I need to access thevertxinstance from theHttpClientobject, but currently there's no way to do this.It could if we export the
HttpClientInternalinterface, by moving it fromio.vertx.core.internal.http.impltoio.vertx.core.internal.http, then I can call it like this:Should we perform this change? I can make a PR for it.