Class: Mongo::KillCursorsMessage

Inherits:
Message
  • Object
show all
Defined in:
lib/mongo/message/kill_cursors_message.rb

Constant Summary

Constants inherited from Message

Message::HEADER_SIZE

Instance Attribute Summary

Attributes inherited from Message

#buf

Instance Method Summary collapse

Methods inherited from Message

#dump, #to_a, #update_message_length, #write_doc, #write_int, #write_long, #write_string

Constructor Details

#initialize(*cursors) ⇒ KillCursorsMessage

Returns a new instance of KillCursorsMessage.



24
25
26
27
28
29
# File 'lib/mongo/message/kill_cursors_message.rb', line 24

def initialize(*cursors)
  super(OP_KILL_CURSORS)
  write_int(0)
  write_int(cursors.length)
  cursors.each { |c| write_long c }
end