Sha256: 99447b48d1feb8b55df4fc8a7c1315b0b4e94ad7f19ac8f8e1f662a02a82b383

Contents?: true

Size: 1.44 KB

Versions: 14

Compression:

Stored size: 1.44 KB

Contents

# Copyright 2018 Aerospike, Inc.
#
# Portions may be licensed to Aerospike, Inc. under one or more contributor
# license agreements.
#
# 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 'aerospike/command/batch_index_command'

module Aerospike

  class BatchIndexExistsCommand < BatchIndexCommand #:nodoc:

    def initialize(node, batch, policy, results)
      super(node, batch, policy, nil, results, INFO1_READ | INFO1_NOBINDATA)
    end

    # Parse all results in the batch.  Add records to shared list.
    # If the record was not found, the bins will be nil.
    def parse_row(result_code)
      batch_index = @data_buffer.read_int32(14)
      field_count = @data_buffer.read_int16(18)
      op_count = @data_buffer.read_int16(20)

      if op_count > 0
        raise Aerospike::Exceptions::Parse.new('Received bins that were not requested!')
      end

      parse_key(field_count)
      results[batch_index] = (result_code == 0)
    end

  end # class

end # module

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
aerospike-2.19.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.18.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.17.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.16.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.15.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.14.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.13.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.12.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.11.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.10.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.9.1 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.9.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.8.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.7.0 lib/aerospike/command/batch_index_exists_command.rb