Class: Couchbase::Options::RemoveMulti
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Collection#remove_multi
Constant Summary collapse
- DEFAULT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
RemoveMulti.new.freeze
Instance Attribute Summary collapse
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(durability_level: :none, replicate_to: :none, persist_to: :none, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ RemoveMulti
constructor
Creates an instance of options for Collection#remove.
- #to_backend ⇒ Object private
Constructor Details
#initialize(durability_level: :none, replicate_to: :none, persist_to: :none, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ RemoveMulti
Creates an instance of options for Collection#remove
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
# File 'lib/couchbase/options.rb', line 507 def initialize(durability_level: :none, replicate_to: :none, persist_to: :none, 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) if durability_level != :none && (replicate_to != :none || persist_to != :none) raise ArgumentError, "durability_level conflicts with replicate_to and persist_to options" end @persist_to = persist_to @replicate_to = replicate_to @durability_level = durability_level yield self if block_given? end |
Instance Attribute Details
#durability_level ⇒ Symbol
471 472 473 |
# File 'lib/couchbase/options.rb', line 471 def durability_level @durability_level end |
Instance Method Details
#to_backend ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
526 527 528 529 530 531 532 533 |
# File 'lib/couchbase/options.rb', line 526 def to_backend { timeout: Utils::Time.extract_duration(@timeout), durability_level: @durability_level, persist_to: @persist_to, replicate_to: @replicate_to, } end |