Class: Couchbase::Options::MutateIn
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Collection#mutate_in
Instance Attribute Summary collapse
- #cas ⇒ Integer?
- #durability_level ⇒ Symbol
- #expiry ⇒ Integer, ...
- #store_semantics ⇒ Symbol
- #transcoder ⇒ JsonTranscoder, #encode(Object)
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(expiry: nil, store_semantics: :replace, cas: nil, access_deleted: false, create_as_deleted: false, durability_level: :none, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ MutateIn
constructor
Creates an instance of options for Collection#mutate_in.
Constructor Details
#initialize(expiry: nil, store_semantics: :replace, cas: nil, access_deleted: false, create_as_deleted: false, durability_level: :none, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ MutateIn
Creates an instance of options for Collection#mutate_in
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 |
# File 'lib/couchbase/options.rb', line 708 def initialize(expiry: nil, store_semantics: :replace, cas: nil, access_deleted: false, create_as_deleted: false, durability_level: :none, transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span) @expiry = Utils::Time.extract_expiry_time(expiry) @store_semantics = store_semantics @cas = cas @access_deleted = access_deleted @create_as_deleted = create_as_deleted @durability_level = durability_level @transcoder = transcoder yield self if block_given? end |
Instance Attribute Details
#cas ⇒ Integer?
673 674 675 |
# File 'lib/couchbase/options.rb', line 673 def cas @cas end |
#durability_level ⇒ Symbol
674 675 676 |
# File 'lib/couchbase/options.rb', line 674 def durability_level @durability_level end |
#expiry ⇒ Integer, ...
671 672 673 |
# File 'lib/couchbase/options.rb', line 671 def expiry @expiry end |
#store_semantics ⇒ Symbol
672 673 674 |
# File 'lib/couchbase/options.rb', line 672 def store_semantics @store_semantics end |
#transcoder ⇒ JsonTranscoder, #encode(Object)
675 676 677 |
# File 'lib/couchbase/options.rb', line 675 def transcoder @transcoder end |