Class: Couchbase::Options::GetAndLock
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Collection#get_and_lock
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.
GetAndLock.new.freeze
Instance Attribute Summary collapse
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAndLock
constructor
Creates an instance of options for Collection#get_and_lock.
- #to_backend ⇒ Object private
Constructor Details
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAndLock
Creates an instance of options for Collection#get_and_lock
181 182 183 184 185 186 187 188 189 |
# File 'lib/couchbase/options.rb', line 181 def initialize(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) @transcoder = transcoder yield self if block_given? end |
Instance Attribute Details
#transcoder ⇒ JsonTranscoder, #decode(String, Integer)
169 170 171 |
# File 'lib/couchbase/options.rb', line 169 def transcoder @transcoder 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.
192 193 194 195 196 |
# File 'lib/couchbase/options.rb', line 192 def to_backend { timeout: Utils::Time.extract_duration(@timeout), } end |