Module: Mongo::Protocol::Serializers::Int32 Private
- 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 integers.
Serializes and de-serializes one 32-bit integer.
Class Method Summary collapse
-
.deserialize(buffer) ⇒ Fixnum
private
Deserializes a 32-bit Fixnum from the IO stream.
-
.serialize(buffer, value) ⇒ String
private
Serializes a fixnum to a 4-byte 32-bit integer.
Class Method Details
.deserialize(buffer) ⇒ Fixnum
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.
Deserializes a 32-bit Fixnum from the IO stream
120 121 122 |
# File 'lib/mongo/protocol/serializers.rb', line 120 def self.deserialize(buffer) buffer.get_int32 end |
.serialize(buffer, value) ⇒ 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 fixnum to a 4-byte 32-bit integer
111 112 113 |
# File 'lib/mongo/protocol/serializers.rb', line 111 def self.serialize(buffer, value) buffer.put_int32(value) end |