Class: Couchbase::RawBinaryTranscoder
- Inherits:
-
Object
- Object
- Couchbase::RawBinaryTranscoder
- Defined in:
- lib/couchbase/raw_binary_transcoder.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/raw_binary_transcoder.rb more...
Instance Method Summary collapse
-
#decode(blob, flags) ⇒ String
Decoded document.
-
#encode(document) ⇒ Array<String, Integer>
Pair of encoded document and flags.
Instance Method Details
#decode(blob, flags) ⇒ String
Returns decoded document.
30 31 32 33 34 35 |
# File 'lib/couchbase/raw_binary_transcoder.rb', line 30 def decode(blob, flags) format = TranscoderFlags.decode(flags).format raise Error::DecodingFailure, "Unable to decode #{format} with the RawBinaryTranscoder" unless format == :binary || format.nil? blob end |
#encode(document) ⇒ Array<String, Integer>
Returns pair of encoded document and flags.
21 22 23 24 25 |
# File 'lib/couchbase/raw_binary_transcoder.rb', line 21 def encode(document) raise Error::EncodingFailure, "Only binary data supported by RawBinaryTranscoder" unless document.is_a?(String) [document, TranscoderFlags.new(format: :binary).encode] end |