Uses of Class
com.couchbase.client.java.manager.bucket.BucketSettings
Package | Description |
---|---|
com.couchbase.client.java.manager.bucket |
APIs related to bucket management.
|
-
Uses of BucketSettings in com.couchbase.client.java.manager.bucket
Methods in com.couchbase.client.java.manager.bucket that return BucketSettings Modifier and Type Method Description BucketSettings
BucketSettings. bucketType(BucketType bucketType)
BucketSettings
BucketSettings. compressionMode(CompressionMode compressionMode)
BucketSettings
BucketSettings. conflictResolutionType(ConflictResolutionType conflictResolutionType)
static BucketSettings
BucketSettings. create(String name)
BucketSettings
BucketSettings. ejectionPolicy(EjectionPolicy ejectionPolicy)
Deprecated.BucketSettings
BucketSettings. evictionPolicy(EvictionPolicyType evictionPolicy)
BucketSettings
BucketSettings. flushEnabled(boolean flushEnabled)
BucketSettings
BucketManager. getBucket(String bucketName)
BucketSettings
BucketManager. getBucket(String bucketName, GetBucketOptions options)
BucketSettings
BucketSettings. maxExpiry(Duration maxExpiry)
Specifies the maximum expiry (time-to-live) for all documents in the bucket.BucketSettings
BucketSettings. maxTTL(int maxTTL)
Deprecated.please usemaxExpiry(Duration)
instead.BucketSettings
BucketSettings. minimumDurabilityLevel(DurabilityLevel durabilityLevel)
Allows to provide a custom minimumDurabilityLevel
for this bucket.BucketSettings
BucketSettings. numReplicas(int numReplicas)
BucketSettings
BucketSettings. ramQuotaMB(long ramQuotaMB)
BucketSettings
BucketSettings. replicaIndexes(boolean replicaIndexes)
Methods in com.couchbase.client.java.manager.bucket that return types with arguments of type BucketSettings Modifier and Type Method Description CompletableFuture<Map<String,BucketSettings>>
AsyncBucketManager. getAllBuckets()
CompletableFuture<Map<String,BucketSettings>>
AsyncBucketManager. getAllBuckets(GetAllBucketOptions options)
Map<String,BucketSettings>
BucketManager. getAllBuckets()
Map<String,BucketSettings>
BucketManager. getAllBuckets(GetAllBucketOptions options)
reactor.core.publisher.Mono<Map<String,BucketSettings>>
ReactiveBucketManager. getAllBuckets()
reactor.core.publisher.Mono<Map<String,BucketSettings>>
ReactiveBucketManager. getAllBuckets(GetAllBucketOptions options)
CompletableFuture<BucketSettings>
AsyncBucketManager. getBucket(String bucketName)
CompletableFuture<BucketSettings>
AsyncBucketManager. getBucket(String bucketName, GetBucketOptions options)
reactor.core.publisher.Mono<BucketSettings>
ReactiveBucketManager. getBucket(String bucketName)
reactor.core.publisher.Mono<BucketSettings>
ReactiveBucketManager. getBucket(String bucketName, GetBucketOptions options)
Methods in com.couchbase.client.java.manager.bucket with parameters of type BucketSettings Modifier and Type Method Description CompletableFuture<Void>
AsyncBucketManager. createBucket(BucketSettings settings)
CompletableFuture<Void>
AsyncBucketManager. createBucket(BucketSettings settings, CreateBucketOptions options)
void
BucketManager. createBucket(BucketSettings settings)
void
BucketManager. createBucket(BucketSettings settings, CreateBucketOptions options)
reactor.core.publisher.Mono<Void>
ReactiveBucketManager. createBucket(BucketSettings settings)
reactor.core.publisher.Mono<Void>
ReactiveBucketManager. createBucket(BucketSettings settings, CreateBucketOptions options)
CompletableFuture<Void>
AsyncBucketManager. updateBucket(BucketSettings settings)
CompletableFuture<Void>
AsyncBucketManager. updateBucket(BucketSettings settings, UpdateBucketOptions options)
void
BucketManager. updateBucket(BucketSettings settings)
void
BucketManager. updateBucket(BucketSettings settings, UpdateBucketOptions options)
reactor.core.publisher.Mono<Void>
ReactiveBucketManager. updateBucket(BucketSettings settings)
reactor.core.publisher.Mono<Void>
ReactiveBucketManager. updateBucket(BucketSettings settings, UpdateBucketOptions options)
evictionPolicy
instead.