An array of binary bytes with a MongoDB subtype. See the subtype constants for reference.
Use this class when storing binary data in documents.
Create a buffer for storing binary data in MongoDB.
@param [Array, String] data to story as BSON binary. If a string is given, the on
Ruby 1.9 it will be forced to the binary encoding.
@param [Fixnum] one of four values specifying a BSON binary subtype. Possible values are
SUBTYPE_BYTES, SUBTYPE_UUID, SUBTYPE_MD5, and SUBTYPE_USER_DEFINED.
@see www.mongodb.org/display/DOCS/BSON#BSON-noteondatabinary BSON binary subtypes.
# File lib/bson/types/binary.rb, line 42 def initialize(data=[], subtype=SUBTYPE_SIMPLE) super(data) @subtype = subtype end
Generated with the Darkfish Rdoc Generator 2.