Sha256: cb91a53e77f66c1d227333c6324d10e391c75697ce79f1fa4b6d3dfce0f9a191

Contents?: true

Size: 1.58 KB

Versions: 49

Compression:

Stored size: 1.58 KB

Contents

module Moped
  module Protocol

    # The Protocol class for killing active cursors.
    #
    # @example
    #   command = KillCursors.new [123, 124, 125]
    #
    # @example Setting the request id
    #   command = KillCursors.new [123, 124, 125], request_id: 456
    class KillCursors
      include Message

      # @attribute
      # @return [Number] the length of the message
      int32 :length

      # @attribute
      # @return [Number] the request id of the message
      int32 :request_id

      int32 :response_to

      # @attribute
      # @return [Number] the operation code of this message
      int32 :op_code

      int32    :reserved # reserved for future use

      # @attribute
      # @return [Number] the number of cursor ids
      int32    :number_of_cursor_ids

      # @attribute
      # @return [Array] the cursor ids to kill
      int64    :cursor_ids, type: :array

      finalize

      undef op_code
      # @return [Number] OP_KILL_CURSORS operation code (2007)
      def op_code
        2007
      end

      # Create a new command to kill cursors.
      #
      # @param [Array] cursor_ids an array of cursor ids to kill
      # @param [Hash] options additional options
      # @option options [Number] :request_id the command's request id
      def initialize(cursor_ids, options = {})
        @cursor_ids           = cursor_ids
        @number_of_cursor_ids = cursor_ids.length
        @request_id           = options[:request_id]
      end

      def log_inspect
        type = "KILL_CURSORS"

        "%-12s cursor_ids=%s" % [type, cursor_ids.inspect]
      end
    end
  end
end

Version data entries

49 entries across 49 versions & 3 rubygems

Version Path
moped-1.5.0 lib/moped/protocol/kill_cursors.rb
moped-1.4.5 lib/moped/protocol/kill_cursors.rb
moped-1.4.4 lib/moped/protocol/kill_cursors.rb
moped-1.4.3 lib/moped/protocol/kill_cursors.rb
moped-1.4.2 lib/moped/protocol/kill_cursors.rb
moped-1.4.1 lib/moped/protocol/kill_cursors.rb
moped-1.4.0 lib/moped/protocol/kill_cursors.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/moped-1.3.2/lib/moped/protocol/kill_cursors.rb
moped-1.3.2 lib/moped/protocol/kill_cursors.rb
moped-1.3.1 lib/moped/protocol/kill_cursors.rb
moped-1.3.0 lib/moped/protocol/kill_cursors.rb
moped-1.2.9 lib/moped/protocol/kill_cursors.rb
moped-1.2.8 lib/moped/protocol/kill_cursors.rb
moped-1.2.7 lib/moped/protocol/kill_cursors.rb
moped-1.2.6 lib/moped/protocol/kill_cursors.rb
moped-1.2.5 lib/moped/protocol/kill_cursors.rb
moped-1.2.4 lib/moped/protocol/kill_cursors.rb
moped-1.2.2 lib/moped/protocol/kill_cursors.rb
moped-1.2.1 lib/moped/protocol/kill_cursors.rb
moped-1.2.0 lib/moped/protocol/kill_cursors.rb