Sha256: c13803dfa8e96a51cd4ca8c0dcd51abbd01f5f53187abd9c359c80c416ce3087
Contents?: true
Size: 1.65 KB
Versions: 17
Compression:
Stored size: 1.65 KB
Contents
# encoding: utf-8 # Copyright 2014 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 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 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
17 entries across 17 versions & 1 rubygems