Class: Couchbase::Options::Replace
- Inherits:
-
Base
- Object
- Base
- Couchbase::Options::Replace
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, cas: nil, durability_level: :none, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|| ... } ⇒ Replace
[View source]
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
|
# File 'lib/couchbase/options.rb', line 665
def initialize(expiry: nil,
preserve_expiry: false,
transcoder: JsonTranscoder.new,
cas: nil,
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
@cas = cas
@durability_level = durability_level
yield self if block_given?
end
|
Instance Attribute Details
#cas ⇒ Integer?
634
635
636
|
# File 'lib/couchbase/options.rb', line 634
def cas
@cas
end
|
#durability_level ⇒ Symbol
635
636
637
|
# File 'lib/couchbase/options.rb', line 635
def durability_level
@durability_level
end
|
#expiry ⇒ Integer, ...
632
633
634
|
# File 'lib/couchbase/options.rb', line 632
def expiry
@expiry
end
|
#preserve_expiry ⇒ Boolean
636
637
638
|
# File 'lib/couchbase/options.rb', line 636
def preserve_expiry
@preserve_expiry
end
|
#transcoder ⇒ JsonTranscoder, #encode(Object)
633
634
635
|
# File 'lib/couchbase/options.rb', line 633
def transcoder
@transcoder
end
|
Instance Method Details
#to_backend ⇒ Object
[View source]
683
684
685
686
687
688
689
690
691
|
# File 'lib/couchbase/options.rb', line 683
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,
cas: @cas,
}
end
|