Packages

class BucketManager extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BucketManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BucketManager(async: AsyncBucketManager)

Value Members

  1. val async: AsyncBucketManager
  2. def create(settings: CreateBucketSettings, timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[Unit]
  3. def dropBucket(bucketName: String, timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[Unit]
  4. def flushBucket(bucketName: String, timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[Unit]
  5. def getAllBuckets(timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[Seq[BucketSettings]]
  6. def getBucket(bucketName: String, timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[BucketSettings]
  7. def updateBucket(settings: CreateBucketSettings, timeout: Duration = defaultManagerTimeout, retryStrategy: RetryStrategy = defaultRetryStrategy): Try[Unit]