Class: Couchbase::Options::CouchbaseMap

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb
more...

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

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

Parameters:

  • get_options (Get) (defaults to: Get.new)
  • remove_options (Remove) (defaults to: Remove.new)
  • lookup_in_options (LookupIn) (defaults to: LookupIn.new)
  • mutate_in_options (MutateIn) (defaults to: MutateIn.new(store_semantics: :upsert))

Yield Parameters:

[View source]

1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
# File 'lib/couchbase/options.rb', line 1039

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 = get_options
  @remove_options = remove_options
  @lookup_in_options = lookup_in_options
  @mutate_in_options = mutate_in_options
  yield self if block_given?
end

Instance Attribute Details

#get_optionsGet

Returns:


1026
1027
1028
# File 'lib/couchbase/options.rb', line 1026

def get_options
  @get_options
end

#lookup_in_optionsLookupIn

Returns:


1028
1029
1030
# File 'lib/couchbase/options.rb', line 1028

def lookup_in_options
  @lookup_in_options
end

#mutate_in_optionsMutateIn

Returns:


1029
1030
1031
# File 'lib/couchbase/options.rb', line 1029

def mutate_in_options
  @mutate_in_options
end

#remove_optionsRemove

Returns:


1027
1028
1029
# File 'lib/couchbase/options.rb', line 1027

def remove_options
  @remove_options
end