OpMsgExecutable — Documentation by YARD 0.9.37 (original) (raw)

Module: Mongo::Operation::OpMsgExecutablePrivate

Includes:

PolymorphicLookup

Included in:

Aggregate, CollectionsInfo, Command, Count, Create, CreateIndex, CreateSearchIndexes, CreateUser, Distinct, Drop, DropDatabase, DropIndex, DropSearchIndex, Explain, Find, GetMore, Indexes, KillCursors, ListCollections, MapReduce, ParallelScan, RemoveUser, UpdateSearchIndex, UpdateUser, UsersInfo, WriteCommand

Defined in:

lib/mongo/operation/shared/op_msg_executable.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Shared behavior of executing the operation as an OpMsg.

Instance Method Summarycollapse

Instance Method Details

#execute(server, context:, options: {}) ⇒ Mongo::Operation::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.

Execute the operation.

| 34 35 36 37 38 39 40 41 | # File 'lib/mongo/operation/shared/op_msg_executable.rb', line 34 def execute(server, context:, options: {}) server.with_connection( connection_global_id: context.connection_global_id, context: context ) do |connection| execute_with_connection(connection, context: context, options: options) end end | | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

#execute_with_connection(connection, context:, options: {}) ⇒ Mongo::Operation::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.

Execute the operation.

51 52 53 # File 'lib/mongo/operation/shared/op_msg_executable.rb', line 51 def execute_with_connection(connection, context:, options: {}) final_operation.execute(connection, context: context, options: options) end