CString — Documentation by YARD 0.9.37 (original) (raw)
Module: Mongo::Protocol::Serializers::CStringPrivate
Defined in:
lib/mongo/protocol/serializers.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
MongoDB wire protocol serialization strategy for C style strings.
Serializes and de-serializes C style strings (null terminated).
Class Method Summarycollapse
- .serialize(buffer, value, validating_keys = nil) ⇒ String private
Serializes a C style string into the buffer.
Class Method Details
.serialize(buffer, value, validating_keys = nil) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Serializes a C style string into the buffer
85 86 87 | # File 'lib/mongo/protocol/serializers.rb', line 85 def self.serialize(buffer, value, validating_keys = nil) buffer.put_cstring(value) end |
---|