Class: Couchbase::Collection::MutateInResult
- Inherits:
-
MutationResult
- Object
- MutationResult
- Couchbase::Collection::MutateInResult
- Defined in:
- lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb more...
Instance Attribute Summary collapse
-
#transcoder ⇒ JsonTranscoder
The default transcoder which should be used.
Attributes inherited from MutationResult
#cas, #error, #id, #mutation_token
Instance Method Summary collapse
-
#content(path_or_index, transcoder = self.transcoder) ⇒ Object
Decodes the content at the given index.
-
#initialize {|self| ... } ⇒ MutateInResult
constructor
A new instance of MutateInResult.
Methods inherited from MutationResult
Constructor Details
#initialize {|self| ... } ⇒ MutateInResult
Returns a new instance of MutateInResult.
242 243 244 245 |
# File 'lib/couchbase/collection_options.rb', line 242 def initialize super yield self if block_given? end |
Instance Attribute Details
#transcoder ⇒ JsonTranscoder
Returns The default transcoder which should be used.
252 253 254 |
# File 'lib/couchbase/collection_options.rb', line 252 def transcoder @transcoder end |
Instance Method Details
#content(path_or_index, transcoder = self.transcoder) ⇒ Object
Decodes the content at the given index
236 237 238 239 |
# File 'lib/couchbase/collection_options.rb', line 236 def content(path_or_index, transcoder = self.transcoder) field = get_field_at_index(path_or_index) transcoder.decode(field.value, :json) end |