Method: Moped::Connection#receive_replies
- Defined in:
- lib/moped/connection.rb
#receive_replies(operations) ⇒ Array<Hash>
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.
Get the replies to the database operation.
117 118 119 120 121 |
# File 'lib/moped/connection.rb', line 117 def receive_replies(operations) operations.map do |operation| operation.receive_replies(self) end end |