class Mongo::Operation::KillCursors::OpMsg

A MongoDB killcursors operation sent as an op message.

@api private

@since 2.5.2

Private Instance Methods

selector(connection) click to toggle source
# File lib/mongo/operation/kill_cursors/op_msg.rb, line 32
def selector(connection)
  {
    killCursors: coll_name,
    cursors: int64_cursor_ids,
  }
end