Zero — Documentation by YARD 0.9.37 (original) (raw)
Module: Mongo::Protocol::Serializers::ZeroPrivate
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 32-bit Zero.
Serializes and de-serializes one 32-bit Zero.
Class Method Summarycollapse
- .serialize(buffer, value, validating_keys = nil) ⇒ String private
Serializes a 32-bit Zero 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 32-bit Zero into the buffer
101 102 103 | # File 'lib/mongo/protocol/serializers.rb', line 101 def self.serialize(buffer, value, validating_keys = nil) buffer.put_int32(ZERO) end |
---|