Class AsyncBucket
-
Method Summary
Modifier and TypeMethodDescriptioncollection
(String collectionName) Provides access to the collection with the given name for thisAsyncBucket
using the default scope.core()
Provides access to the underlyingCore
.Opens the default collection for thisAsyncBucket
using the default scope.Opens the defaultAsyncScope
.Returns the attachedClusterEnvironment
.name()
Returns the name of theAsyncBucket
.ping()
Performs application-level ping requests against services in the couchbase cluster.ping
(PingOptions options) Performs application-level ping requests with custom options against services in the couchbase cluster.Opens theAsyncScope
with the given name.viewQuery
(String designDoc, String viewName, ViewOptions options) waitUntilReady
(Duration timeout) Waits until the desiredClusterState
is reached.waitUntilReady
(Duration timeout, WaitUntilReadyOptions options) Waits until the desiredClusterState
is reached.
-
Method Details
-
name
Returns the name of theAsyncBucket
. -
environment
Returns the attachedClusterEnvironment
. -
core
Provides access to the underlyingCore
.This is advanced API, use with care!
-
collections
-
viewIndexes
-
scope
Opens theAsyncScope
with the given name.- Parameters:
name
- the name of the scope.- Returns:
- the
AsyncScope
once opened.
-
defaultScope
Opens the defaultAsyncScope
.- Returns:
- the
AsyncScope
once opened.
-
defaultCollection
Opens the default collection for thisAsyncBucket
using the default scope.This method does not block and the client will try to establish all needed resources in the background. If you need to eagerly await until all resources are established before performing an operation, use the
waitUntilReady(Duration)
method on theAsyncBucket
.- Returns:
- the opened default
AsyncCollection
.
-
collection
Provides access to the collection with the given name for thisAsyncBucket
using the default scope.This method does not block and the client will try to establish all needed resources in the background. If you need to eagerly await until all resources are established before performing an operation, use the
waitUntilReady(Duration)
method on theAsyncBucket
.- Returns:
- the opened named
AsyncCollection
.
-
viewQuery
-
viewQuery
public CompletableFuture<ViewResult> viewQuery(String designDoc, String viewName, ViewOptions options) -
ping
Performs application-level ping requests against services in the couchbase cluster.- Returns:
- the
PingResult
once complete.
-
ping
Performs application-level ping requests with custom options against services in the couchbase cluster.- Returns:
- the
PingResult
once complete.
-
waitUntilReady
Waits until the desiredClusterState
is reached.This method will wait until either the cluster state is "online", or the timeout is reached. Since the SDK is bootstrapping lazily, this method allows to eagerly check during bootstrap if all of the services are online and usable before moving on.
- Parameters:
timeout
- the maximum time to wait until readiness.- Returns:
- a completable future that completes either once ready or timeout.
-
waitUntilReady
Waits until the desiredClusterState
is reached.This method will wait until either the cluster state is "online" by default, or the timeout is reached. Since the SDK is bootstrapping lazily, this method allows to eagerly check during bootstrap if all of the services are online and usable before moving on. You can tune the properties through
WaitUntilReadyOptions
.- Parameters:
timeout
- the maximum time to wait until readiness.options
- the options to customize the readiness waiting.- Returns:
- a completable future that completes either once ready or timeout.
-