Class: Couchbase::Options::UpsertMulti
- Inherits:
-
Base
- Object
- Base
- Couchbase::Options::UpsertMulti
show all
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Instance Attribute Summary collapse
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary
collapse
Constructor Details
#initialize(expiry: nil, preserve_expiry: false, transcoder: JsonTranscoder.new, durability_level: :none, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ UpsertMulti
[View source]
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
# File 'lib/couchbase/options.rb', line 604
def initialize(expiry: nil,
preserve_expiry: false,
transcoder: JsonTranscoder.new,
durability_level: :none,
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)
@expiry = Utils::Time.(expiry)
@preserve_expiry = preserve_expiry
@transcoder = transcoder
@durability_level = durability_level
yield self if block_given?
end
|
Instance Attribute Details
#durability_level ⇒ Symbol
575
576
577
|
# File 'lib/couchbase/options.rb', line 575
def durability_level
@durability_level
end
|
#expiry ⇒ Integer, ...
573
574
575
|
# File 'lib/couchbase/options.rb', line 573
def expiry
@expiry
end
|
#preserve_expiry ⇒ Boolean
576
577
578
|
# File 'lib/couchbase/options.rb', line 576
def preserve_expiry
@preserve_expiry
end
|
#transcoder ⇒ JsonTranscoder, #encode(Object)
574
575
576
|
# File 'lib/couchbase/options.rb', line 574
def transcoder
@transcoder
end
|
Instance Method Details
#to_backend ⇒ Object
[View source]
620
621
622
623
624
625
626
627
|
# File 'lib/couchbase/options.rb', line 620
def to_backend
{
timeout: @timeout.respond_to?(:in_milliseconds) ? @timeout.public_send(:in_milliseconds) : @timeout,
expiry: @expiry,
preserve_expiry: @preserve_expiry,
durability_level: @durability_level,
}
end
|