Class: Couchbase::Options::GetAllReplicas
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Collection#get_all_replicas
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.
GetAllReplicas.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| ... } ⇒ GetAllReplicas
constructor
Creates an instance of options for Collection#get_all_replicas.
- #to_backend ⇒ Object private
Constructor Details
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAllReplicas
Creates an instance of options for Collection#get_all_replicas
251 252 253 254 255 256 257 258 259 |
# File 'lib/couchbase/options.rb', line 251 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)
239 240 241 |
# File 'lib/couchbase/options.rb', line 239 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.
262 263 264 265 266 |
# File 'lib/couchbase/options.rb', line 262 def to_backend { timeout: Utils::Time.extract_duration(@timeout), } end |