Package | Description |
---|---|
com.couchbase.client.java.bucket |
Modifier and Type | Method and Description |
---|---|
List<IndexInfo> |
DefaultBucketManager.listN1qlIndexes() |
Observable<IndexInfo> |
DefaultAsyncBucketManager.listN1qlIndexes() |
List<IndexInfo> |
BucketManager.listN1qlIndexes()
List all N1QL GSI indexes that are registered for the current bucket, with the default management timeout.
|
Observable<IndexInfo> |
AsyncBucketManager.listN1qlIndexes()
List all N1QL GSI indexes that are registered for the current bucket.
|
List<IndexInfo> |
DefaultBucketManager.listN1qlIndexes(long timeout,
TimeUnit timeUnit) |
List<IndexInfo> |
BucketManager.listN1qlIndexes(long timeout,
TimeUnit timeUnit)
List all N1QL GSI indexes that are registered for the current bucket, with a custom timeout.
|
List<IndexInfo> |
DefaultBucketManager.watchN1qlIndexes(List<String> watchList,
long watchTimeout,
TimeUnit watchTimeUnit) |
Observable<IndexInfo> |
DefaultAsyncBucketManager.watchN1qlIndexes(List<String> watchList,
long watchTimeout,
TimeUnit watchTimeUnit) |
List<IndexInfo> |
BucketManager.watchN1qlIndexes(List<String> watchList,
long watchTimeout,
TimeUnit watchTimeUnit)
Watches all given indexes (possibly including the primary one), polling the query service until they become “online” or the watchTimeout has expired.
|
Observable<IndexInfo> |
AsyncBucketManager.watchN1qlIndexes(List<String> watchList,
long watchTimeout,
TimeUnit watchTimeUnit)
Watches all given indexes (possibly including the primary one), polling the query service until they become “online” or the watchTimeout has expired..
|
Copyright © 2015 Couchbase, Inc.