Uses of Class
io.vertx.mutiny.uritemplate.UriTemplate

Packages that use UriTemplate
  • Uses of UriTemplate in io.vertx.mutiny.ext.web.client

    Methods in io.vertx.mutiny.ext.web.client with parameters of type UriTemplate
    Modifier and Type
    Method
    Description
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.delete(int port, String host, UriTemplate requestURI)
    Create an HTTP DELETE request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.delete(UriTemplate requestURI)
    Create an HTTP DELETE request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.delete(String host, UriTemplate requestURI)
    Create an HTTP DELETE request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.deleteAbs(UriTemplate absoluteURI)
    Create an HTTP DELETE request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.get(int port, String host, UriTemplate requestURI)
    Create an HTTP GET request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.get(UriTemplate requestURI)
    Create an HTTP GET request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.get(String host, UriTemplate requestURI)
    Create an HTTP GET request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.getAbs(UriTemplate absoluteURI)
    Create an HTTP GET request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.head(int port, String host, UriTemplate requestURI)
    Create an HTTP HEAD request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.head(UriTemplate requestURI)
    Create an HTTP HEAD request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.head(String host, UriTemplate requestURI)
    Create an HTTP HEAD request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.headAbs(UriTemplate absoluteURI)
    Create an HTTP HEAD request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.patch(int port, String host, UriTemplate requestURI)
    Create an HTTP PATCH request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.patch(UriTemplate requestURI)
    Create an HTTP PATCH request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.patch(String host, UriTemplate requestURI)
    Create an HTTP PATCH request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.patchAbs(UriTemplate absoluteURI)
    Create an HTTP PATCH request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.post(int port, String host, UriTemplate requestURI)
    Create an HTTP POST request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.post(UriTemplate requestURI)
    Create an HTTP POST request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.post(String host, UriTemplate requestURI)
    Create an HTTP POST request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.postAbs(UriTemplate absoluteURI)
    Create an HTTP POST request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.put(int port, String host, UriTemplate requestURI)
    Create an HTTP PUT request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.put(UriTemplate requestURI)
    Create an HTTP PUT request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.put(String host, UriTemplate requestURI)
    Create an HTTP PUT request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.putAbs(UriTemplate absoluteURI)
    Create an HTTP PUT request to send to the server using an absolute URI, specifying a response handler to receive the response
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, int port, String host, UriTemplate requestURI)
    Create an HTTP request to send to the server at the specified host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, io.vertx.core.net.SocketAddress serverAddress, int port, String host, UriTemplate requestURI)
    Like WebClient.request(HttpMethod, int, String, UriTemplate) using the serverAddress parameter to connect to the server instead of the port and host parameters.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, io.vertx.core.net.SocketAddress serverAddress, UriTemplate requestURI)
    Like WebClient.request(HttpMethod, UriTemplate) using the serverAddress parameter to connect to the server instead of the default port and default host.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, io.vertx.core.net.SocketAddress serverAddress, String host, UriTemplate requestURI)
    Like WebClient.request(HttpMethod, String, UriTemplate) using the serverAddress parameter to connect to the server instead of the default port and host parameter.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, UriTemplate requestURI)
    Create an HTTP request to send to the server at the default host and port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.request(io.vertx.core.http.HttpMethod method, String host, UriTemplate requestURI)
    Create an HTTP request to send to the server at the specified host and default port.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.requestAbs(io.vertx.core.http.HttpMethod method, io.vertx.core.net.SocketAddress serverAddress, UriTemplate absoluteURI)
    Like WebClient.requestAbs(HttpMethod, UriTemplate) using the serverAddress parameter to connect to the server instead of the absoluteURI parameter.
    HttpRequest<io.vertx.core.buffer.Buffer>
    WebClient.requestAbs(io.vertx.core.http.HttpMethod method, UriTemplate absoluteURI)
    Create an HTTP request to send to the server using an absolute URI
  • Uses of UriTemplate in io.vertx.mutiny.uritemplate

    Fields in io.vertx.mutiny.uritemplate with type parameters of type UriTemplate
    Modifier and Type
    Field
    Description
    static final TypeArg<UriTemplate>
    UriTemplate.__TYPE_ARG
     
    Modifier and Type
    Method
    Description
    UriTemplate.newInstance(io.vertx.uritemplate.UriTemplate delegate)
    Creates a new instance of the UriTemplate.
    UriTemplate.of(String uri)
    Create a template from a string uri.