Class: Couchbase::Management::Options::Bucket::DropBucket

Inherits:
Options::Base
  • Object
show all
Defined in:
lib/couchbase/management/bucket_manager.rb

Overview

Instance Attribute Summary

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ DropBucket

Creates an instance of options for BucketManager#drop_bucket

Parameters:

  • timeout (Integer, #in_milliseconds, nil) (defaults to: nil)

    the time in milliseconds allowed for the operation to complete

  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

  • client_context (Hash, nil) (defaults to: nil)

    the client context data, if set

  • parent_span (Span, nil) (defaults to: nil)

    if set holds the parent span, that should be used for this request

Yield Parameters:



72
73
74
75
76
77
78
# File 'lib/couchbase/management/bucket_manager.rb', line 72

def initialize(timeout: nil,
               retry_strategy: nil,
               client_context: nil,
               parent_span: nil)
  super
  yield self if block_given?
end