Class: Mongo::Operation::Commands::Indexes
- Inherits:
-
Object
- Object
- Mongo::Operation::Commands::Indexes
- Includes:
- ReadPreference, Specifiable
- Defined in:
- lib/mongo/operation/commands/indexes.rb
Overview
A MongoDB get indexes operation.
Initialize the get indexes operation.
Initialization:
param [ Hash ] spec The specifications for the insert.
option spec :db_name [ String ] The name of the database.
option spec :coll_name [ String ] The name of the collection.
Constant Summary
Constants included from ReadPreference
Constants included from Specifiable
Specifiable::BYPASS_DOC_VALIDATION, Specifiable::COLL_NAME, Specifiable::CURSOR_COUNT, Specifiable::CURSOR_ID, Specifiable::CURSOR_IDS, Specifiable::DB_NAME, Specifiable::DELETE, Specifiable::DELETES, Specifiable::DOCUMENTS, Specifiable::INDEX, Specifiable::INDEXES, Specifiable::INDEX_NAME, Specifiable::OPERATION_ID, Specifiable::OPTIONS, Specifiable::READ, Specifiable::READ_CONCERN, Specifiable::SELECTOR, Specifiable::TO_RETURN, Specifiable::UPDATE, Specifiable::UPDATES, Specifiable::USER, Specifiable::USER_NAME, Specifiable::WRITE_CONCERN
Instance Attribute Summary
Attributes included from Specifiable
Instance Method Summary collapse
-
#execute(context) ⇒ Result
Execute the operation.
Methods included from Specifiable
#==, #bypass_document_validation, #coll_name, #cursor_count, #cursor_id, #cursor_ids, #db_name, #delete, #deletes, #documents, #index, #index_name, #indexes, #initialize, #namespace, #operation_id, #options, #ordered?, #read, #read_concern, #to_return, #update, #updates, #user, #user_name, #write_concern
Instance Method Details
#execute(context) ⇒ Result
Execute the operation. The context gets a connection on which the operation is sent in the block.
46 47 48 49 50 51 52 |
# File 'lib/mongo/operation/commands/indexes.rb', line 46 def execute(context) if context.features.list_indexes_enabled? ListIndexes.new(spec).execute(context) else (context) end end |