Sha256: 1b29b7a0120cd4f12dd035b681e19cd6672bc108ee2fcd81ef67f0a7b3acb9f0

Contents?: true

Size: 1.45 KB

Versions: 3

Compression:

Stored size: 1.45 KB

Contents

# Copyright (C) 2014-2015 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Mongo
  module Operation
    module Write

      # This module contains common functionality for operations that need to
      # be followed by a GLE message.
      #
      # @since 2.1.0
      module GLE

        private

        def execute_message(context)
          context.with_connection do |connection|
            result_class = defined?(self.class::LegacyResult) ? self.class::LegacyResult :
                defined?(self.class::Result) ? self.class::Result : Result
            result_class.new(connection.dispatch([ message, gle ].compact)).validate!
          end
        end

        def gle
          if gle_message = write_concern.get_last_error
            Protocol::Query.new(
                db_name,
                Database::COMMAND,
                gle_message,
                options.merge(limit: -1)
            )
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongo-2.1.1 lib/mongo/operation/write/gle.rb
mongo-2.1.0 lib/mongo/operation/write/gle.rb
mongo-2.1.0.rc0 lib/mongo/operation/write/gle.rb