Sha256: cff91c2c16bf04cfa51a5b9813a8c8e6ad9084bd18203b958b4ffc9c81f01c56

Contents?: true

Size: 1.44 KB

Versions: 15

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

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

  end # class

end # module

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
aerospike-4.1.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-4.0.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-3.0.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.29.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.28.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.27.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.26.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.25.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.24.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.23.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.22.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.21.1 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.21.0 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.20.1 lib/aerospike/command/batch_index_exists_command.rb
aerospike-2.20.0 lib/aerospike/command/batch_index_exists_command.rb