Package | Description |
---|---|
com.couchbase.client.java | |
com.couchbase.client.java.transcoder |
Modifier and Type | Method and Description |
---|---|
Bucket |
CouchbaseCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders) |
Observable<AsyncBucket> |
CouchbaseAsyncCluster.openBucket(String name,
String pass,
List<Transcoder<? extends Document,?>> transcoders) |
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.
|
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. |
Bucket |
CouchbaseCluster.openBucket(String name,
String password,
List<Transcoder<? extends Document,?>> transcoders,
long timeout,
TimeUnit timeUnit) |
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.
|
Constructor and Description |
---|
CouchbaseAsyncBucket(com.couchbase.client.core.ClusterFacade core,
CouchbaseEnvironment environment,
String name,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
CouchbaseBucket(CouchbaseEnvironment env,
com.couchbase.client.core.ClusterFacade core,
String name,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractTranscoder<D extends Document<T>,T>
Base
Transcoder which should be extended for compatibility. |
class |
BinaryTranscoder |
class |
JsonArrayTranscoder
A transcoder to encode and decode
JsonDocument s. |
class |
JsonBooleanTranscoder
A transcoder to encode and decode
JsonBooleanDocument s. |
class |
JsonDoubleTranscoder
A transcoder to encode and decode
JsonDoubleDocument s. |
class |
JsonLongTranscoder
A transcoder to encode and decode
JsonDoubleDocument s. |
class |
JsonStringTranscoder
A transcoder to encode and decode
JsonStringDocument s. |
class |
JsonTranscoder
A transcoder to encode and decode
JsonDocument s. |
class |
LegacyTranscoder
A
Transcoder which mimics the behavior of the Java SDK 1.* series for compatibility. |
class |
RawJsonTranscoder
A transcoder to encode and decode a
RawJsonDocument s. |
class |
SerializableTranscoder
A transcoder to encode and decode
SerializableDocument s. |
class |
StringTranscoder
A transcoder to encode and decode
StringDocument s. |
Copyright © 2015 Couchbase, Inc.. All rights reserved.