Uses of Class
com.couchbase.client.java.manager.collection.ScopeSpec
Package | Description |
---|---|
com.couchbase.client.java.manager.collection |
-
Uses of ScopeSpec in com.couchbase.client.java.manager.collection
Methods in com.couchbase.client.java.manager.collection that return ScopeSpec Modifier and Type Method Description static ScopeSpec
ScopeSpec. create(String name)
static ScopeSpec
ScopeSpec. create(String name, Set<CollectionSpec> collectionSpecs)
ScopeSpec
CollectionManager. getScope(String scopeName)
Returns the scope if it exists.ScopeSpec
CollectionManager. getScope(String scopeName, GetScopeOptions options)
Returns the scope if it exists.Methods in com.couchbase.client.java.manager.collection that return types with arguments of type ScopeSpec Modifier and Type Method Description CompletableFuture<List<ScopeSpec>>
AsyncCollectionManager. getAllScopes()
Returns all scopes in this bucket.CompletableFuture<List<ScopeSpec>>
AsyncCollectionManager. getAllScopes(GetAllScopesOptions options)
Returns all scopes in this bucket.List<ScopeSpec>
CollectionManager. getAllScopes()
Returns all scopes in this bucket.List<ScopeSpec>
CollectionManager. getAllScopes(GetAllScopesOptions options)
Returns all scopes in this bucket.Flux<ScopeSpec>
ReactiveCollectionManager. getAllScopes()
Returns all scopes in this bucket.Flux<ScopeSpec>
ReactiveCollectionManager. getAllScopes(GetAllScopesOptions options)
Returns all scopes in this bucket.CompletableFuture<ScopeSpec>
AsyncCollectionManager. getScope(String scopeName)
Returns the scope if it exists.CompletableFuture<ScopeSpec>
AsyncCollectionManager. getScope(String scopeName, GetScopeOptions options)
Returns the scope if it exists.Mono<ScopeSpec>
ReactiveCollectionManager. getScope(String scopeName)
Returns the scope if it exists.Mono<ScopeSpec>
ReactiveCollectionManager. getScope(String scopeName, GetScopeOptions options)
Returns the scope if it exists.