case classObjectId(id: Array[Byte]) extends Product with Serializable
BSON's 12-byte ObjectId type, constructed using:
a 4-byte value representing the seconds since the Unix epoch,
a 3-byte machine identifier,
a 2-byte process id, and
a 3-byte counter, starting with a random value.
The implementation is adopt from ReactiveMongo.
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
BSON's 12-byte ObjectId type, constructed using: a 4-byte value representing the seconds since the Unix epoch, a 3-byte machine identifier, a 2-byte process id, and a 3-byte counter, starting with a random value.
The implementation is adopt from ReactiveMongo.