Sha256: 65a9e746accfc045f974fc2f6c03237b2040d90a617a1c9b55df311e0b0af166

Contents?: true

Size: 1.11 KB

Versions: 11

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
# Copyright 2015-2017 Aerospike, 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 Aerospike

  class UnsupportedParticleTypeValidator

    def initialize(*particle_types)
      @unsupported_types = particle_types.to_set
    end

    def call(*commands)
      used = commands.flat_map(&:write_bins).map(&:type)
      unsupported = @unsupported_types.intersection(used)
      unless unsupported.empty?
        fail Aerospike::Exceptions::Aerospike.new(Aerospike::ResultCode::TYPE_NOT_SUPPORTED, "Particle type(s) not supported by cluster: #{@unsupported_types.to_a}")
      end
    end

  end # class

end # module

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
aerospike-2.12.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.11.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.10.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.9.1 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.9.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.8.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.7.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.6.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.5.1 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.5.0 lib/aerospike/command/unsupported_particle_type_validator.rb
aerospike-2.4.0 lib/aerospike/command/unsupported_particle_type_validator.rb