Class: Couchbase::Options::CouchbaseSet
- Inherits:
-
Object
- Object
- Couchbase::Options::CouchbaseSet
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Datastructures::CouchbaseSet#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)) {|| ... } ⇒ CouchbaseSet
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)) {|| ... } ⇒ CouchbaseSet
Creates an instance of options for #initialize
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 |
# File 'lib/couchbase/options.rb', line 1614 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
1603 1604 1605 |
# File 'lib/couchbase/options.rb', line 1603 def @lookup_in_options end |
#mutate_in_options ⇒ MutateIn
1604 1605 1606 |
# File 'lib/couchbase/options.rb', line 1604 def @mutate_in_options end |
#remove_options ⇒ Remove
1602 1603 1604 |
# File 'lib/couchbase/options.rb', line 1602 def @remove_options end |