Class: XGen::Mongo::Driver::RemoveMessage
- Defined in:
- lib/mongo/message/remove_message.rb
Constant Summary
Constants inherited from Message
Instance Attribute Summary
Attributes inherited from Message
Instance Method Summary collapse
- 
  
    
      #initialize(db_name, collection_name, sel)  ⇒ RemoveMessage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RemoveMessage. 
Methods inherited from Message
#dump, #to_a, #update_message_length, #write_doc, #write_int, #write_long, #write_string
Constructor Details
#initialize(db_name, collection_name, sel) ⇒ RemoveMessage
Returns a new instance of RemoveMessage.
| 26 27 28 29 30 31 32 | # File 'lib/mongo/message/remove_message.rb', line 26 def initialize(db_name, collection_name, sel) super(OP_DELETE) write_int(0) write_string("#{db_name}.#{collection_name}") write_int(0) # flags? write_doc(sel) end |