Module: Mongo::Operation::OpMsgExecutable Private

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.

API:

  • private

Instance Method Summary collapse

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.

Parameters:

  • The server to send the operation to.

  • The operation context.

  • (defaults to: {})

    Operation execution options.

Returns:

  • The operation result.

API:

  • private



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.

Parameters:

  • The connection to send the operation through.

  • The operation context.

  • (defaults to: {})

    Operation execution options.

Returns:

  • The operation result.

API:

  • private



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