Modifier and Type | Method and Description |
---|---|
CouchbaseEnvironment |
CouchbaseBucket.environment() |
CouchbaseEnvironment |
CouchbaseAsyncBucket.environment() |
CouchbaseEnvironment |
Bucket.environment()
The
CouchbaseEnvironment used. |
CouchbaseEnvironment |
AsyncBucket.environment()
The
CouchbaseEnvironment used. |
Modifier and Type | Method and Description |
---|---|
static CouchbaseCluster |
CouchbaseCluster.create(CouchbaseEnvironment environment)
Creates a new
CouchbaseCluster reference against the CouchbaseAsyncCluster.DEFAULT_HOST . |
static CouchbaseAsyncCluster |
CouchbaseAsyncCluster.create(CouchbaseEnvironment environment)
Creates a new
CouchbaseAsyncCluster reference against the CouchbaseAsyncCluster.DEFAULT_HOST . |
static CouchbaseCluster |
CouchbaseCluster.create(CouchbaseEnvironment environment,
List<String> nodes)
Creates a new
CouchbaseCluster reference against the nodes passed in. |
static CouchbaseAsyncCluster |
CouchbaseAsyncCluster.create(CouchbaseEnvironment environment,
List<String> nodes)
Creates a new
CouchbaseAsyncCluster reference against the nodes passed in. |
static CouchbaseCluster |
CouchbaseCluster.create(CouchbaseEnvironment environment,
String... nodes)
Creates a new
CouchbaseCluster reference against the nodes passed in. |
static CouchbaseAsyncCluster |
CouchbaseAsyncCluster.create(CouchbaseEnvironment environment,
String... nodes)
Creates a new
CouchbaseAsyncCluster reference against the nodes passed in. |
static CouchbaseCluster |
CouchbaseCluster.fromConnectionString(CouchbaseEnvironment environment,
String connectionString)
Creates a new
CouchbaseCluster reference using the connection string. |
static CouchbaseAsyncCluster |
CouchbaseAsyncCluster.fromConnectionString(CouchbaseEnvironment environment,
String connectionString)
Creates a new
CouchbaseAsyncCluster reference using the connection string. |
Constructor and Description |
---|
CouchbaseAsyncBucket(ClusterFacade core,
CouchbaseEnvironment environment,
String name,
String password,
List<Transcoder<? extends Document,?>> customTranscoders) |
CouchbaseBucket(AsyncBucket asyncBucket,
CouchbaseEnvironment env,
ClusterFacade core,
String name,
String password)
Create a
CouchbaseBucket that relies on the provided AsyncBucket . |
CouchbaseBucket(CouchbaseEnvironment env,
ClusterFacade core,
String name,
String password,
List<Transcoder<? extends Document,?>> customTranscoders)
Create a
CouchbaseBucket that doesn’t reuse an existing AsyncBucket but rather creates one internally. |
Modifier and Type | Method and Description |
---|---|
static DefaultBucketManager |
DefaultBucketManager.create(CouchbaseEnvironment environment,
String bucket,
String password,
ClusterFacade core) |
Modifier and Type | Method and Description |
---|---|
static DefaultClusterManager |
DefaultClusterManager.create(String username,
String password,
ConnectionString connectionString,
CouchbaseEnvironment environment,
ClusterFacade core) |
static DefaultAsyncClusterManager |
DefaultAsyncClusterManager.create(String username,
String password,
ConnectionString connectionString,
CouchbaseEnvironment environment,
ClusterFacade core) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultCouchbaseEnvironment
The default implementation of a
CouchbaseEnvironment . |
Constructor and Description |
---|
CouchbaseRepository(Bucket bucket,
CouchbaseEnvironment environment) |
Constructor and Description |
---|
AsyncLookupInBuilder(ClusterFacade core,
String bucketName,
CouchbaseEnvironment environment,
FragmentTranscoder transcoder,
String docId)
Instances of this builder should be obtained through
AsyncBucket.lookupIn(String) rather than directly constructed. |
AsyncMutateInBuilder(ClusterFacade core,
String bucketName,
CouchbaseEnvironment environment,
FragmentTranscoder transcoder,
String docId)
Instances of this builder should be obtained through
AsyncBucket.mutateIn(String) rather than directly constructed. |
Constructor and Description |
---|
RawQueryExecutor(AsyncRawQueryExecutor async,
CouchbaseEnvironment env) |
RawQueryExecutor(String bucket,
String password,
ClusterFacade core,
CouchbaseEnvironment env) |
Constructor and Description |
---|
DefaultSpatialViewResult(CouchbaseEnvironment env,
Bucket bucket,
Observable<AsyncSpatialViewRow> rows,
boolean success,
Observable<JsonObject> error,
JsonObject debug) |
DefaultSpatialViewRow(CouchbaseEnvironment env,
AsyncSpatialViewRow asyncViewRow) |
DefaultViewResult(CouchbaseEnvironment env,
Bucket bucket,
Observable<AsyncViewRow> rows,
int totalRows,
boolean success,
Observable<JsonObject> error,
JsonObject debug) |
DefaultViewRow(CouchbaseEnvironment env,
AsyncViewRow asyncViewRow) |
Copyright © 2015 Couchbase, Inc.