Class: Couchbase::Options::Upsert
- Inherits:
-
Base
- Object
- Base
- Couchbase::Options::Upsert
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) {|| ... } ⇒ Upsert
[View source]
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
|
# File 'lib/couchbase/options.rb', line 545
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
516
517
518
|
# File 'lib/couchbase/options.rb', line 516
def durability_level
@durability_level
end
|
#expiry ⇒ Integer, ...
514
515
516
|
# File 'lib/couchbase/options.rb', line 514
def expiry
@expiry
end
|
#preserve_expiry ⇒ Boolean
517
518
519
|
# File 'lib/couchbase/options.rb', line 517
def preserve_expiry
@preserve_expiry
end
|
#transcoder ⇒ JsonTranscoder, #encode(Object)
515
516
517
|
# File 'lib/couchbase/options.rb', line 515
def transcoder
@transcoder
end
|
Instance Method Details
#to_backend ⇒ Object
[View source]
561
562
563
564
565
566
567
568
|
# File 'lib/couchbase/options.rb', line 561
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
|