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, read_preference: :no_preference, 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, read_preference: :no_preference, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAllReplicas
Creates an instance of options for Collection#get_all_replicas
255 256 257 258 259 260 261 262 263 264 265 |
# File 'lib/couchbase/options.rb', line 255 def initialize(transcoder: JsonTranscoder.new, read_preference: :no_preference, 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 @read_preference = read_preference yield self if block_given? end |
Instance Attribute Details
#read_preference ⇒ Symbol
240 241 242 |
# File 'lib/couchbase/options.rb', line 240 def read_preference @read_preference end |
#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.
268 269 270 271 272 273 |
# File 'lib/couchbase/options.rb', line 268 def to_backend { timeout: Utils::Time.extract_duration(@timeout), read_preference: @read_preference, } end |