Class: Couchbase::Options::Base
- Inherits:
-
Object
- Object
- Couchbase::Options::Base
show all
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Base class for most of the options
Direct Known Subclasses
Analytics, Append, Decrement, Exists, Get, GetAllReplicas, GetAndLock, GetAndTouch, GetAnyReplica, GetMulti, Increment, Insert, LookupIn, MutateIn, Prepend, Query, Remove, RemoveMulti, Replace, Search, Touch, Unlock, Upsert, UpsertMulti, View
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ Base
Returns a new instance of Base.
[View source]
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/couchbase/options.rb', line 33
def initialize(timeout: nil,
retry_strategy: nil,
client_context: nil,
parent_span: nil)
@timeout = timeout
@retry_strategy = retry_strategy
@client_context = client_context
@parent_span = parent_span
yield self if block_given?
end
|
Instance Attribute Details
#client_context ⇒ Hash?
24
25
26
|
# File 'lib/couchbase/options.rb', line 24
def client_context
@client_context
end
|
#parent_span ⇒ Span?
25
26
27
|
# File 'lib/couchbase/options.rb', line 25
def parent_span
@parent_span
end
|
#retry_strategy ⇒ Proc?
23
24
25
|
# File 'lib/couchbase/options.rb', line 23
def retry_strategy
@retry_strategy
end
|
#timeout ⇒ Integer, ...
22
23
24
|
# File 'lib/couchbase/options.rb', line 22
def timeout
@timeout
end
|