Class: Couchbase::Collection::GetResult
- Inherits:
-
Object
- Object
- Couchbase::Collection::GetResult
- Defined in:
- lib/couchbase/collection_options.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#cas ⇒ Integer
Holds the CAS value of the fetched document.
-
#expiry ⇒ Integer
The expiration if fetched and present.
-
#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).
-
#initialize {|self| ... } ⇒ GetResult
constructor
A new instance of GetResult.
Constructor Details
#initialize {|self| ... } ⇒ GetResult
Returns a new instance of GetResult.
107 108 109 |
# File 'lib/couchbase/collection_options.rb', line 107 def initialize yield self if block_given? end |
Instance Attribute Details
#cas ⇒ Integer
Returns holds the CAS value of the fetched document.
88 89 90 |
# File 'lib/couchbase/collection_options.rb', line 88 def cas @cas end |
#expiry ⇒ Integer
Returns the expiration if fetched and present.
91 92 93 |
# File 'lib/couchbase/collection_options.rb', line 91 def expiry @expiry end |
#transcoder ⇒ JsonTranscoder
Returns The default transcoder which should be used.
116 117 118 |
# File 'lib/couchbase/collection_options.rb', line 116 def transcoder @transcoder end |
Instance Method Details
#content(transcoder = self.transcoder) ⇒ Object
Decodes the content of the document using given (or default transcoder)
102 103 104 |
# File 'lib/couchbase/collection_options.rb', line 102 def content(transcoder = self.transcoder) transcoder.decode(@encoded, @flags) end |