Class: Couchbase::Options::CouchbaseSet
- Inherits:
-
Object
- Object
- Couchbase::Options::CouchbaseSet
- Defined in:
- lib/couchbase/options.rb
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
1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 |
# File 'lib/couchbase/options.rb', line 1645 def initialize(get_options: Get.new, remove_options: Remove.new, lookup_in_options: LookupIn.new, mutate_in_options: MutateIn.new(store_semantics: :upsert)) = = = = yield self if block_given? end |