Class ReactiveQueryIndexManager
- java.lang.Object
-
- com.couchbase.client.java.manager.query.ReactiveQueryIndexManager
-
public class ReactiveQueryIndexManager extends Object
-
-
Constructor Summary
Constructors Constructor Description ReactiveQueryIndexManager(AsyncQueryIndexManager async)
-
Method Summary
-
-
-
Constructor Detail
-
ReactiveQueryIndexManager
public ReactiveQueryIndexManager(AsyncQueryIndexManager async)
-
-
Method Detail
-
createIndex
public Mono<Void> createIndex(String bucketName, String indexName, Collection<String> fields)
-
createIndex
public Mono<Void> createIndex(String bucketName, String indexName, Collection<String> fields, CreateQueryIndexOptions options)
-
createPrimaryIndex
public Mono<Void> createPrimaryIndex(String bucketName, CreatePrimaryQueryIndexOptions options)
-
getAllIndexes
public Mono<List<QueryIndex>> getAllIndexes(String bucketName)
-
getAllIndexes
public Mono<List<QueryIndex>> getAllIndexes(String bucketName, GetAllQueryIndexesOptions options)
-
dropPrimaryIndex
public Mono<Void> dropPrimaryIndex(String bucketName, DropPrimaryQueryIndexOptions options)
-
dropIndex
public Mono<Void> dropIndex(String bucketName, String indexName, DropQueryIndexOptions options)
-
buildDeferredIndexes
public Mono<Void> buildDeferredIndexes(String bucketName, BuildQueryIndexOptions options)
-
watchIndexes
public Mono<Void> watchIndexes(String bucketName, Collection<String> indexNames, Duration timeout)
-
watchIndexes
public Mono<Void> watchIndexes(String bucketName, Collection<String> indexNames, Duration timeout, WatchQueryIndexesOptions options)
-
-