Class: Couchbase::Options::GetAllReplicas
- Defined in:
- lib/couchbase/options.rb
Overview
Options for Collection#get_all_replicas
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.
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 |