/ 

io.vertx/ vertx-lang-groovy/ 3.8.0/ io/vertx/groovy/ext/web/client/WebClient_GroovyExtension.java

 

  • class publicWebClient_GroovyExtension
    • method final publicrequest(WebClient, HttpMethod, Map<String, Object>): HttpRequest<Buffer>
    • method final publicrequest(WebClient, HttpMethod, SocketAddress, Map<String, Object>): HttpRequest<Buffer>
http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-lang-groovy-parent/vertx-lang-groovy: Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ (Eclipse)
  • The Apache Software License, Version 2.0
  • Eclipse Public License - v 1.0
package io.vertx.groovy.ext.web.client;
public class WebClient_GroovyExtension {
  public static io.vertx.ext.web.client.HttpRequest<io.vertx.core.buffer.Buffer> request(io.vertx.ext.web.client.WebClient j_receiver, io.vertx.core.http.HttpMethod method, java.util.Map<String, Object> options) {
    return io.vertx.core.impl.ConversionHelper.fromObject(j_receiver.request(method,
      options != null ? new io.vertx.core.http.RequestOptions(io.vertx.core.impl.ConversionHelper.toJsonObject(options)) : null));
  }
  public static io.vertx.ext.web.client.HttpRequest<io.vertx.core.buffer.Buffer> request(io.vertx.ext.web.client.WebClient j_receiver, io.vertx.core.http.HttpMethod method, io.vertx.core.net.SocketAddress serverAddress, java.util.Map<String, Object> options) {
    return io.vertx.core.impl.ConversionHelper.fromObject(j_receiver.request(method,
      serverAddress,
      options != null ? new io.vertx.core.http.RequestOptions(io.vertx.core.impl.ConversionHelper.toJsonObject(options)) : null));
  }
}


Missing a library or version you want to see? Open an issue!
Icon set and themes from IntelliJ Community