Uses of Class
com.couchbase.client.java.ReactiveCollection
Packages that use ReactiveCollection
Package
Description
Holds all classes that are needed for the Couchbase Java SDK.
-
Uses of ReactiveCollection in com.couchbase.client.java
Methods in com.couchbase.client.java that return ReactiveCollectionModifier and TypeMethodDescriptionReactiveBucket.collection
(String collectionName) Provides access to the collection with the given name for thisReactiveBucket
using the default scope.ReactiveScope.collection
(String collectionName) Opens a collection for this scope with an explicit name.ReactiveBucket.defaultCollection()
Opens the default collection for thisReactiveBucket
using the default scope.Collection.reactive()
Provides access to the underlyingReactiveCollection
. -
Uses of ReactiveCollection in com.couchbase.client.java.transactions
Methods in com.couchbase.client.java.transactions with parameters of type ReactiveCollectionModifier and TypeMethodDescriptionReactiveTransactionAttemptContext.get
(ReactiveCollection collection, String id) Gets a document with the specifiedid
and from the specified Couchbasecollection
.ReactiveTransactionAttemptContext.get
(ReactiveCollection collection, String id, TransactionGetOptions options) Gets a document with the specifiedid
and from the specified Couchbasecollection
.ReactiveTransactionAttemptContext.getReplicaFromPreferredServerGroup
(ReactiveCollection collection, String id) A convenience wrapper aroundReactiveTransactionAttemptContext.getReplicaFromPreferredServerGroup(ReactiveCollection, String, TransactionGetReplicaFromPreferredServerGroupOptions)
using default options.ReactiveTransactionAttemptContext.getReplicaFromPreferredServerGroup
(ReactiveCollection collection, String id, TransactionGetReplicaFromPreferredServerGroupOptions options) Gets a document from the specified Couchbasecollection
matching the specifiedid
.ReactiveTransactionAttemptContext.insert
(ReactiveCollection collection, String id, Object content) Inserts a new document into the specified Couchbasecollection
.ReactiveTransactionAttemptContext.insert
(ReactiveCollection collection, String id, Object content, TransactionInsertOptions options) Inserts a new document into the specified Couchbasecollection
.