Uses of Class
com.couchbase.client.java.diagnostics.PingOptions
Package | Description |
---|---|
com.couchbase.client.java |
Holds all classes that are needed for the Couchbase Java SDK.
|
com.couchbase.client.java.diagnostics |
-
Uses of PingOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type PingOptions Modifier and Type Method Description CompletableFuture<PingResult>
AsyncBucket. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster.CompletableFuture<PingResult>
AsyncCluster. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster.PingResult
Bucket. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster.PingResult
Cluster. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster.Mono<PingResult>
ReactiveBucket. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster.Mono<PingResult>
ReactiveCluster. ping(PingOptions options)
Performs application-level ping requests with custom options against services in the couchbase cluster. -
Uses of PingOptions in com.couchbase.client.java.diagnostics
Methods in com.couchbase.client.java.diagnostics that return PingOptions Modifier and Type Method Description static PingOptions
PingOptions. pingOptions()
Creates a new set ofPingOptions
.PingOptions
PingOptions. reportId(String reportId)
Sets a custom report ID that will be used in the report.PingOptions
PingOptions. retryStrategy(RetryStrategy retryStrategy)
Specifies a customRetryStrategy
for this operation.PingOptions
PingOptions. serviceTypes(ServiceType... serviceTypes)
Allows to customize the set of services to ping.PingOptions
PingOptions. serviceTypes(Set<ServiceType> serviceTypes)
Allows to customize the set of services to ping.PingOptions
PingOptions. timeout(Duration timeout)
Specifies a custom per-operation timeout.