Class: Couchbase::Options::Unlock
Overview
Options for Collection#unlock
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.
Unlock.new.freeze
Instance Attribute Summary
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Unlock
constructor
Creates an instance of options for Collection#unlock.
- #to_backend ⇒ Object private
Constructor Details
#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Unlock
Creates an instance of options for Collection#unlock
375 376 377 378 379 380 381 |
# File 'lib/couchbase/options.rb', line 375 def initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super yield self if block_given? 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.
384 385 386 387 388 |
# File 'lib/couchbase/options.rb', line 384 def to_backend { timeout: Utils::Time.extract_duration(@timeout), } end |