Package | Description |
---|---|
com.couchbase.client.java.bucket |
Modifier and Type | Method and Description |
---|---|
List<IndexInfo> |
DefaultBucketManager.listIndexes() |
Observable<IndexInfo> |
DefaultAsyncBucketManager.listIndexes() |
List<IndexInfo> |
BucketManager.listIndexes()
List all N1QL indexes that are registered for the current bucket, with the default management timeout.
|
Observable<IndexInfo> |
AsyncBucketManager.listIndexes()
List all N1QL indexes that are registered for the current bucket.
|
List<IndexInfo> |
DefaultBucketManager.listIndexes(long timeout,
TimeUnit timeUnit) |
List<IndexInfo> |
BucketManager.listIndexes(long timeout,
TimeUnit timeUnit)
List all N1QL indexes that are registered for the current bucket, with a custom timeout.
|
Observable<IndexInfo> |
DefaultAsyncBucketManager.watchIndex(String indexName,
long watchTimeout,
TimeUnit watchTimeUnit) |
Observable<IndexInfo> |
AsyncBucketManager.watchIndex(String indexName,
long watchTimeout,
TimeUnit watchTimeUnit)
Watches a specific index, polling the query service until the index becomes “online” or the watchTimeout has expired.
|
List<IndexInfo> |
DefaultBucketManager.watchIndexes(List<String> watchList,
boolean watchPrimary,
long watchTimeout,
TimeUnit watchTimeUnit) |
Observable<IndexInfo> |
DefaultAsyncBucketManager.watchIndexes(List<String> watchList,
boolean watchPrimary,
long watchTimeout,
TimeUnit watchTimeUnit) |
List<IndexInfo> |
BucketManager.watchIndexes(List<String> watchList,
boolean watchPrimary,
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.watchIndexes(List<String> watchList,
boolean watchPrimary,
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.