-
Method parameters in com.couchbase.client.java with type arguments of type Transcoder
Modifier and Type |
Method |
Description |
rx.Observable<AsyncBucket> |
AsyncCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders) |
Opens the bucket with the given name, password and a custom list of Transcoder s.
|
rx.Observable<AsyncBucket> |
AsyncCluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders) |
Opens the bucket with the given name using the password from the Authenticator that was last
set
If no credential context can be found for the bucket when using ClassicAuthenticator , the old behavior of defaulting to an empty
password is used.
|
Bucket |
Cluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders) |
Opens a bucket identified by its name and password with custom transcoders and with the default connect timeout.
|
Bucket |
Cluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
Opens a bucket identified by its name and password with custom transcoders and with a custom timeout.
|
Bucket |
Cluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders) |
Opens the bucket with the given name, using the default timeout and the password from the Authenticator
If no credential context can be found for the bucket when using ClassicAuthenticator , the old behavior of
defaulting to an empty password is used.
|
Bucket |
Cluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
Opens the bucket with the given name, using a custom timeout and the password from the Authenticator
If no credential context can be found for the bucket when using ClassicAuthenticator , the old behavior
of defaulting to an empty password is used.
|
rx.Observable<AsyncBucket> |
CouchbaseAsyncCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders) |
|
rx.Observable<AsyncBucket> |
CouchbaseAsyncCluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders) |
|
Bucket |
CouchbaseCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders) |
|
Bucket |
CouchbaseCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
|
Bucket |
CouchbaseCluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders) |
|
Bucket |
CouchbaseCluster.openBucket(String name,
List<Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
|
Constructor parameters in com.couchbase.client.java with type arguments of type Transcoder
Constructor |
Description |
CouchbaseAsyncBucket(ClusterFacade core,
CouchbaseEnvironment environment,
String name,
String username,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
|
CouchbaseAsyncBucket(ClusterFacade core,
CouchbaseEnvironment environment,
String name,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
|
CouchbaseBucket(CouchbaseEnvironment env,
ClusterFacade core,
String name,
String username,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
|
-
Method parameters in com.couchbase.client.java.bucket with type arguments of type Transcoder
Modifier and Type |
Method |
Description |
static <D extends Document<?>> rx.Observable<D> |
ReplicaReader.read(ClusterFacade core,
String id,
ReplicaMode type,
String bucket,
Map<Class<? extends Document>,Transcoder<? extends Document,?>> transcoders,
Class<D> target,
CouchbaseEnvironment environment,
long timeout,
TimeUnit timeUnit) |
Perform replica reads to as many nodes a possible based on the given ReplicaMode .
|
-
Methods in com.couchbase.client.java.bucket.api with parameters of type Transcoder
Modifier and Type |
Method |
Description |
static <D extends Document<?>> rx.Observable<D> |
Mutate.append(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
static <D extends Document<?>> rx.Observable<D> |
Mutate.insert(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
static <D extends Document<?>> rx.Observable<D> |
Mutate.prepend(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
static <D extends Document<?>> rx.Observable<D> |
Mutate.remove(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
static <D extends Document<?>> rx.Observable<D> |
Mutate.replace(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
static <D extends Document<?>> rx.Observable<D> |
Mutate.upsert(D document,
CouchbaseEnvironment env,
Transcoder<Document<Object>,Object> transcoder,
ClusterFacade core,
String bucket,
long timeout,
TimeUnit timeUnit,
io.opentracing.Span parent) |
|
Method parameters in com.couchbase.client.java.bucket.api with type arguments of type Transcoder
Modifier and Type |
Method |
Description |
static <D extends Document<?>> rx.Observable<D> |
Get.get(String id,
Class<D> target,
CouchbaseEnvironment environment,
String bucket,
ClusterFacade core,
Map<Class<? extends Document>,Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
|
static <D extends Document<?>> rx.Observable<D> |
Get.getAndLock(String id,
Class<D> target,
CouchbaseEnvironment environment,
String bucket,
ClusterFacade core,
Map<Class<? extends Document>,Transcoder<? extends Document,?>> transcoders,
int lockTime,
long timeout,
TimeUnit timeUnit) |
|
static <D extends Document<?>> rx.Observable<D> |
Get.getAndTouch(String id,
Class<D> target,
CouchbaseEnvironment environment,
String bucket,
ClusterFacade core,
Map<Class<? extends Document>,Transcoder<? extends Document,?>> transcoders,
int expiry,
long timeout,
TimeUnit timeUnit) |
|
-
-