Class: Couchbase::Collection::ExistsResult
- Inherits:
-
Object
- Object
- Couchbase::Collection::ExistsResult
- Defined in:
- lib/couchbase/collection_options.rb,
/code/couchbase-ruby-client/lib/couchbase/collection_options.rb
Instance Attribute Summary collapse
-
#cas ⇒ Integer
Holds the CAS value of the fetched document.
-
#deleted ⇒ Boolean
True if the document was deleted.
-
#exists ⇒ Boolean
(also: #exists?)
True if the document exists.
-
#expiry ⇒ Integer
writeonly
The expiration if fetched and present.
Instance Method Summary collapse
-
#expiry_time ⇒ Time
Time when the document will expire.
-
#initialize {|| ... } ⇒ ExistsResult
constructor
A new instance of ExistsResult.
Constructor Details
#initialize {|| ... } ⇒ ExistsResult
Returns a new instance of ExistsResult.
108 109 110 |
# File 'lib/couchbase/collection_options.rb', line 108 def initialize yield self if block_given? end |
Instance Attribute Details
#cas ⇒ Integer
Returns holds the CAS value of the fetched document.
98 99 100 |
# File 'lib/couchbase/collection_options.rb', line 98 def cas @cas end |
#deleted ⇒ Boolean
Returns true if the document was deleted.
101 102 103 |
# File 'lib/couchbase/collection_options.rb', line 101 def deleted @deleted end |
#exists ⇒ Boolean Also known as: exists?
Returns true if the document exists.
104 105 106 |
# File 'lib/couchbase/collection_options.rb', line 104 def exists @exists end |
#expiry=(value) ⇒ Integer (writeonly)
Returns the expiration if fetched and present.
113 114 115 |
# File 'lib/couchbase/collection_options.rb', line 113 def expiry=(value) @expiry = value end |
Instance Method Details
#expiry_time ⇒ Time
Returns time when the document will expire.
116 117 118 |
# File 'lib/couchbase/collection_options.rb', line 116 def expiry_time Time.at(@expiry) if @expiry end |