Uses of Class
com.couchbase.client.java.manager.collection.ScopeSpec
-
Packages that use 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)
Creates a newScopeSpec
with no collections attached.static ScopeSpec
ScopeSpec. create(String name, Set<CollectionSpec> collectionSpecs)
Creates a newScopeSpec
with a set ofCollectionSpec
s.ScopeSpec
CollectionManager. getScope(String scopeName)
Deprecated.useCollectionManager.getAllScopes()
instead.ScopeSpec
CollectionManager. getScope(String scopeName, GetScopeOptions options)
Deprecated.useCollectionManager.getAllScopes(GetAllScopesOptions)
instead.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 with custom options.List<ScopeSpec>
CollectionManager. getAllScopes()
Returns all scopes in this bucket.List<ScopeSpec>
CollectionManager. getAllScopes(GetAllScopesOptions options)
Returns all scopes in this bucket with custom options.Flux<ScopeSpec>
ReactiveCollectionManager. getAllScopes()
Returns all scopes in this bucket.Flux<ScopeSpec>
ReactiveCollectionManager. getAllScopes(GetAllScopesOptions options)
Returns all scopes in this bucket with custom options.CompletableFuture<ScopeSpec>
AsyncCollectionManager. getScope(String scopeName)
Deprecated.useAsyncCollectionManager.getAllScopes()
instead.CompletableFuture<ScopeSpec>
AsyncCollectionManager. getScope(String scopeName, GetScopeOptions options)
Deprecated.Mono<ScopeSpec>
ReactiveCollectionManager. getScope(String scopeName)
Deprecated.useReactiveCollectionManager.getAllScopes()
instead.Mono<ScopeSpec>
ReactiveCollectionManager. getScope(String scopeName, GetScopeOptions options)
Deprecated.
-