class Mongo::Protocol::Reply

The MongoDB wire protocol message representing a reply

@example

socket = TCPSocket.new('localhost', 27017)
query = Protocol::Query.new('xgen', 'users', {:name => 'Tyler'})
socket.write(query)
reply = Protocol::Reply::deserialize(socket)

@api semipublic