Sha256: bf4cd35f172cf1cb87f887c9867a5db7a8356974c1258cf4a81a96c29e5fb750

Contents?: true

Size: 1.79 KB

Versions: 10

Compression:

Stored size: 1.79 KB

Contents

# encoding: utf-8
# Copyright 2014-2017 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/value/value'

module Aerospike

  class Operation

    attr_reader :op_type, :bin_name, :bin_value

    READ        = 1
    READ_HEADER = 1
    WRITE       = 2
    CDT_READ    = 3
    CDT_MODIFY  = 4
    ADD         = 5
    APPEND      = 9
    PREPEND     = 10
    TOUCH       = 11

    def initialize(op_type, bin_name=nil, bin_value=NullValue.new)
      @op_type = op_type
      @bin_name = bin_name
      @bin_value = Value.of(bin_value)
      self
    end

    def bin
      Aerospike::Bin.new(bin_name, bin_value) if bin_name && bin_value
    end

    def self.get(bin_name=nil)
      Operation.new(READ, bin_name)
    end

    def self.get_header(bin_name=nil)
      Operation.new(READ_HEADER, bin_name)
    end

    def self.put(bin)
      Operation.new(WRITE, bin.name, bin.value)
    end

    def self.append(bin)
      Operation.new(APPEND, bin.name, bin.value)
    end

    def self.prepend(bin)
      Operation.new(PREPEND, bin.name, bin.value)
    end

    def self.add(bin)
      Operation.new(ADD, bin.name, bin.value)
    end

    def self.touch
      Operation.new(TOUCH)
    end

  end

end # module

Version data entries

10 entries across 10 versions & 1 rubygems

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