You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 HttpClientVertxvertx = ((HttpClientInternal) client).vertx();
Should we perform this change? I can make a PR for it.