Class: Mongo::Operation::Delete::Result

Inherits:
Result
  • Object
show all
Defined in:
build/ruby-driver-v2.19/lib/mongo/operation/delete/result.rb

Overview

Defines custom behavior of results for a delete.

Since:

  • 2.0.0

Constant Summary

Constants inherited from Result

Result::CURSOR, Result::CURSOR_ID, Result::FIRST_BATCH, Result::N, Result::NAMESPACE, Result::NEXT_BATCH, Result::OK, Result::RESULT

Instance Attribute Summary

Attributes inherited from Result

#connection_description, #connection_global_id, #replies

Instance Method Summary collapse

Methods inherited from Result

#acknowledged?, #cluster_time, #cursor_id, #documents, #each, #error, #has_cursor_id?, #initialize, #inspect, #labels, #namespace, #ok?, #operation_time, #reply, #returned_count, #snapshot_timestamp, #successful?, #topology_version, #validate!, #write_concern_error?, #written_count

Constructor Details

This class inherits a constructor from Mongo::Operation::Result

Instance Method Details

#bulk_resultObject

Since:

  • 2.0.0



42
43
44
# File 'build/ruby-driver-v2.19/lib/mongo/operation/delete/result.rb', line 42

def bulk_result
  BulkResult.new(@replies, connection_description)
end

#deleted_countInteger

Get the number of documents deleted.

Examples:

Get the deleted count.

result.deleted_count

Returns:

  • (Integer)

    The deleted count.

Since:

  • 2.0.0



37
38
39
# File 'build/ruby-driver-v2.19/lib/mongo/operation/delete/result.rb', line 37

def deleted_count
  n
end