Class: Couchbase::Options::LookupInAllReplicas
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Collection#lookup_in_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, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ LookupInAllReplicas
constructor
Creates an instance of options for Collection#lookup_in_all_replicas.
Constructor Details
#initialize(transcoder: JsonTranscoder.new, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ LookupInAllReplicas
Creates an instance of options for Collection#lookup_in_all_replicas
1082 1083 1084 1085 1086 1087 1088 1089 1090 |
# File 'lib/couchbase/options.rb', line 1082 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)
1070 1071 1072 |
# File 'lib/couchbase/options.rb', line 1070 def transcoder @transcoder end |