Class: Couchbase::Management::Options::Collection::DropScope

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

Overview

Constant Summary collapse

DEFAULT =
DropScope.new.freeze

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| ... } ⇒ DropScope

Creates an instance of options for CollectionManager#drop_scope

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:



76
77
78
79
80
81
82
# File 'lib/couchbase/management/collection_manager.rb', line 76

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