Package | Description |
---|---|
com.couchbase.client.java.http |
Modifier and Type | Method and Description |
---|---|
static HttpPath |
HttpPath.of(String template,
List<String> args)
Like
of(String, String...) but takes the arguments as a list instead of varargs. |
static HttpPath |
HttpPath.of(String template,
String... args)
Returns a new path, substituting any "{}" placeholders in the template with
the corresponding argument.
|
Modifier and Type | Method and Description |
---|---|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.delete(HttpTarget target,
HttpPath path)
Returns a Mono that, when subscribed, issues a DELETE request with default options.
|
HttpResponse |
CouchbaseHttpClient.delete(HttpTarget target,
HttpPath path)
Issues a DELETE request with default options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.delete(HttpTarget target,
HttpPath path)
Issues a DELETE request with default options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.delete(HttpTarget target,
HttpPath path,
HttpDeleteOptions options)
Returns a Mono that, when subscribed, issues a DELETE request with given options.
|
HttpResponse |
CouchbaseHttpClient.delete(HttpTarget target,
HttpPath path,
HttpDeleteOptions options)
Issues a DELETE request with the given options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.delete(HttpTarget target,
HttpPath path,
HttpDeleteOptions options)
Issues a DELETE request with given options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.get(HttpTarget target,
HttpPath path)
Returns a Mono that, when subscribed, issues a GET request with default options (no query parameters).
|
HttpResponse |
CouchbaseHttpClient.get(HttpTarget target,
HttpPath path)
Issues a GET request with default options (no query parameters).
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.get(HttpTarget target,
HttpPath path)
Issues a GET request with default options (no query parameters).
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.get(HttpTarget target,
HttpPath path,
HttpGetOptions options)
Returns a Mono that, when subscribed, issues a GET request with the given options.
|
HttpResponse |
CouchbaseHttpClient.get(HttpTarget target,
HttpPath path,
HttpGetOptions options)
Issues a GET request with the given options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.get(HttpTarget target,
HttpPath path,
HttpGetOptions options)
Issues a GET request with the given options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.post(HttpTarget target,
HttpPath path)
Returns a Mono that, when subscribed, issues a POST request with no body and default options.
|
HttpResponse |
CouchbaseHttpClient.post(HttpTarget target,
HttpPath path)
Issues a POST request with no body and default options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.post(HttpTarget target,
HttpPath path)
Issues a POST request with no body and default options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.post(HttpTarget target,
HttpPath path,
HttpPostOptions options)
Returns a Mono that, when subscribed, issues a POST request with the given options.
|
HttpResponse |
CouchbaseHttpClient.post(HttpTarget target,
HttpPath path,
HttpPostOptions options)
Issues a POST request with the given options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.post(HttpTarget target,
HttpPath path,
HttpPostOptions options)
Issues a POST request with the given options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.put(HttpTarget target,
HttpPath path)
Returns a Mono that, when subscribed, issues a PUT request with no body and default options.
|
HttpResponse |
CouchbaseHttpClient.put(HttpTarget target,
HttpPath path)
Issues a PUT request with no body and default options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.put(HttpTarget target,
HttpPath path)
Issues a PUT request with no body and default options.
|
Mono<HttpResponse> |
ReactiveCouchbaseHttpClient.put(HttpTarget target,
HttpPath path,
HttpPutOptions options)
Returns a Mono that, when subscribed, issues a PUT request with the given options.
|
HttpResponse |
CouchbaseHttpClient.put(HttpTarget target,
HttpPath path,
HttpPutOptions options)
Issues a PUT request with the given options.
|
CompletableFuture<HttpResponse> |
AsyncCouchbaseHttpClient.put(HttpTarget target,
HttpPath path,
HttpPutOptions options)
Issues a PUT request with the given options.
|
Copyright © 2024 Couchbase, Inc.. All rights reserved.