Class: Couchbase::Management::Options::Collection::CreateScope

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

Overview

Constant Summary collapse

DEFAULT =
CreateScope.new.freeze

Instance Attribute Summary

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Methods inherited from Options::Base

#to_backend

Constructor Details

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

Creates an instance of options for CollectionManager#create_scope

Yield Parameters:



57
58
59
60
61
62
63
# File 'lib/couchbase/management/collection_manager.rb', line 57

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