Sha256: d2b9f08ce92ba56aa6c7791a9d46fa57d449ae5de7e1d87a80a7c19fe2a39e5d

Contents?: true

Size: 957 Bytes

Versions: 14

Compression:

Stored size: 957 Bytes

Contents

# --
# Copyright (C) 2008-2009 10gen 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.
# ++

require 'mongo/message/message'
require 'mongo/message/opcodes'

module XGen
  module Mongo
    module Driver

      class KillCursorsMessage < Message

        def initialize(*cursors)
          super(OP_KILL_CURSORS)
          write_int(0)
          write_int(cursors.length)
          cursors.each { |c| write_long c }
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
animehunter-mongo-0.9 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.10.1 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.10 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.11.1 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.11 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.12 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.6.3 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.6.4 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.6.5 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.6.6 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.6.7 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.7 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.8 lib/mongo/message/kill_cursors_message.rb
mongodb-mongo-0.9 lib/mongo/message/kill_cursors_message.rb