Class: Couchbase::Collection::GetResult
- Inherits:
-
Object
- Object
- Couchbase::Collection::GetResult
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb more...
Direct Known Subclasses
Instance Attribute Summary collapse
-
#cas ⇒ Integer
Holds the CAS value of the fetched document.
-
#error ⇒ Error::CouchbaseError?
Error associated with the result, or nil (used in #get_multi).
-
#expiry ⇒ Integer
deprecated
Deprecated.
Use #expiry_time
-
#transcoder ⇒ JsonTranscoder
The default transcoder which should be used.
Instance Method Summary collapse
-
#content(transcoder = self.transcoder) ⇒ Object
Decodes the content of the document using given (or default transcoder).
-
#expiry_time ⇒ Time
Time when the document will expire.
-
#initialize {|self| ... } ⇒ GetResult
constructor
A new instance of GetResult.
-
#success? ⇒ Boolean
True if error was not associated with the result (useful for multi-operations).
Constructor Details
#initialize {|self| ... } ⇒ GetResult
Returns a new instance of GetResult.
59 60 61 62 63 |
# File 'lib/couchbase/collection_options.rb', line 59 def initialize @expiry = nil @error = nil yield self if block_given? end |
Instance Attribute Details
#cas ⇒ Integer
Returns holds the CAS value of the fetched document.
27 28 29 |
# File 'lib/couchbase/collection_options.rb', line 27 def cas @cas end |
#error ⇒ Error::CouchbaseError?
Returns error associated with the result, or nil (used in Couchbase::Collection#get_multi).
33 34 35 |
# File 'lib/couchbase/collection_options.rb', line 33 def error @error end |
#expiry ⇒ Integer
Use #expiry_time
Returns the expiration if fetched and present.
74 75 76 |
# File 'lib/couchbase/collection_options.rb', line 74 def expiry # rubocop:disable Style/TrivialAccessors will be removed in next major release @expiry end |
#transcoder ⇒ JsonTranscoder
Returns The default transcoder which should be used.
70 71 72 |
# File 'lib/couchbase/collection_options.rb', line 70 def transcoder @transcoder end |
Instance Method Details
#content(transcoder = self.transcoder) ⇒ Object
Decodes the content of the document using given (or default transcoder)
49 50 51 |
# File 'lib/couchbase/collection_options.rb', line 49 def content(transcoder = self.transcoder) transcoder ? transcoder.decode(@encoded, @flags) : @encoded end |
#expiry_time ⇒ Time
Returns time when the document will expire.
54 55 56 |
# File 'lib/couchbase/collection_options.rb', line 54 def expiry_time Time.at(@expiry) if @expiry end |
#success? ⇒ Boolean
Returns true if error was not associated with the result (useful for multi-operations).
36 37 38 |
# File 'lib/couchbase/collection_options.rb', line 36 def success? !error end |