-
Methods in com.couchbase.client.java with parameters of type N1qlQuery
Modifier and Type |
Method |
Description |
rx.Observable<AsyncN1qlQueryResult> |
AsyncBucket.query(N1qlQuery query) |
Queries a N1QL secondary index.
|
rx.Observable<AsyncN1qlQueryResult> |
AsyncBucket.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
Queries a N1QL secondary index with a custom timeout.
|
rx.Observable<AsyncN1qlQueryResult> |
AsyncCluster.query(N1qlQuery query) |
Asynchronously perform a N1QL query that can span multiple buckets.
|
N1qlQueryResult |
Bucket.query(N1qlQuery query) |
|
N1qlQueryResult |
Bucket.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
Queries a N1QL secondary index with a custom timeout.
|
N1qlQueryResult |
Cluster.query(N1qlQuery query) |
Synchronously perform a N1QL query that can span multiple buckets, with the default
timeout .
|
N1qlQueryResult |
Cluster.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
Synchronously perform a N1QL query that can span multiple buckets, with a custom timeout.
|
rx.Observable<AsyncN1qlQueryResult> |
CouchbaseAsyncBucket.query(N1qlQuery query) |
|
rx.Observable<AsyncN1qlQueryResult> |
CouchbaseAsyncBucket.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
|
rx.Observable<AsyncN1qlQueryResult> |
CouchbaseAsyncCluster.query(N1qlQuery query) |
|
N1qlQueryResult |
CouchbaseBucket.query(N1qlQuery query) |
|
N1qlQueryResult |
CouchbaseBucket.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
|
N1qlQueryResult |
CouchbaseCluster.query(N1qlQuery query) |
|
N1qlQueryResult |
CouchbaseCluster.query(N1qlQuery query,
long timeout,
TimeUnit timeUnit) |
|
-
-
Methods in com.couchbase.client.java.query.core with parameters of type N1qlQuery
Modifier and Type |
Method |
Description |
protected rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.dispatchPrepared(N1qlQuery query,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
|
rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.execute(N1qlQuery query,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
|
protected rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.executePrepared(N1qlQuery query,
PreparedPayload payload,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
Issues a proper N1QL EXECUTE, detecting if parameters must be added to it.
|
protected rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.executeQuery(N1qlQuery query,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
Internal: Queries a N1QL secondary index.
|
protected rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.prepareAndExecute(N1qlQuery query,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
Issues a N1QL PREPARE, puts the plan in cache then EXECUTE it.
|
protected rx.Observable<AsyncN1qlQueryResult> |
N1qlQueryExecutor.retryPrepareAndExecuteOnce(Throwable error,
N1qlQuery query,
CouchbaseEnvironment env,
long timeout,
TimeUnit timeUnit) |
In case the error warrants a retry, issue a PREPARE, followed by an update
of the cache and an EXECUTE.
|
-