Class: Couchbase::Options::GetAnyReplica
- Defined in:
- lib/couchbase/options.rb,
/code/couchbase-ruby-client/lib/couchbase/options.rb
Overview
Options for Collection#get_any_replica
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| ... } ⇒ GetAnyReplica
constructor
Creates an instance of options for Collection#get_any_replica.
Constructor Details
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAnyReplica
Creates an instance of options for Collection#get_any_replica
286 287 288 289 290 291 292 293 294 |
# File 'lib/couchbase/options.rb', line 286 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)
274 275 276 |
# File 'lib/couchbase/options.rb', line 274 def transcoder @transcoder end |