Class: Mongo::Operation::CollectionsInfo::Result
- Inherits:
-
Operation::Result
- Object
- Operation::Result
- Mongo::Operation::CollectionsInfo::Result
- Defined in:
- lib/mongo/operation/collections_info/result.rb
Overview
Defines custom behavior of results when query the system.namespaces collection.
Instance Method Summary collapse
-
#initialize(replies, connection_description, connection_global_id, database_name) ⇒ Result
constructor
private
Initialize a new result.
-
#namespace ⇒ String
private
Get the namespace for the cursor.
Constructor Details
#initialize(replies, connection_description, connection_global_id, database_name) ⇒ Result
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.
Initialize a new result.
39 40 41 42 |
# File 'lib/mongo/operation/collections_info/result.rb', line 39 def initialize(replies, connection_description, connection_global_id, database_name) super(replies, connection_description, connection_global_id) @database_name = database_name end |
Instance Method Details
#namespace ⇒ String
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 namespace for the cursor.
53 54 55 |
# File 'lib/mongo/operation/collections_info/result.rb', line 53 def namespace "#{@database_name}.#{Database::NAMESPACES}" end |