Class: Couchbase::Options::CouchbaseMap
- Inherits:
-
Object
- Object
- Couchbase::Options::CouchbaseMap
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Datastructures::CouchbaseMap#initialize
Instance Attribute Summary collapse
- #get_options ⇒ Get
- #lookup_in_options ⇒ LookupIn
- #mutate_in_options ⇒ MutateIn
- #remove_options ⇒ Remove
Instance Method Summary collapse
-
#initialize(get_options: Get.new, remove_options: Remove.new, lookup_in_options: LookupIn.new, mutate_in_options: MutateIn.new(store_semantics: :upsert)) {|| ... } ⇒ CouchbaseMap
constructor
Creates an instance of options for #initialize.
Constructor Details
#initialize(get_options: Get.new, remove_options: Remove.new, lookup_in_options: LookupIn.new, mutate_in_options: MutateIn.new(store_semantics: :upsert)) {|| ... } ⇒ CouchbaseMap
Creates an instance of options for #initialize
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 |
# File 'lib/couchbase/options.rb', line 1591 def initialize(get_options: Get.new, remove_options: Remove.new, lookup_in_options: LookupIn.new, mutate_in_options: MutateIn.new(store_semantics: :upsert)) @get_options = @remove_options = @lookup_in_options = @mutate_in_options = yield self if block_given? end |
Instance Attribute Details
#lookup_in_options ⇒ LookupIn
1580 1581 1582 |
# File 'lib/couchbase/options.rb', line 1580 def @lookup_in_options end |
#mutate_in_options ⇒ MutateIn
1581 1582 1583 |
# File 'lib/couchbase/options.rb', line 1581 def @mutate_in_options end |
#remove_options ⇒ Remove
1579 1580 1581 |
# File 'lib/couchbase/options.rb', line 1579 def @remove_options end |