Method: Aerospike::BatchUDF#==

Defined in:
lib/aerospike/batch_udf.rb

#==(other) ⇒ Object

Optimized reference equality check to determine batch wire protocol repeat flag. For internal use only.

[View source]

52
53
54
55
56
# File 'lib/aerospike/batch_udf.rb', line 52

def ==(other) # :nodoc:
    other && other.instance_of?(self.class) &&
      @function_name == other.function_name && @function_args == other.function_args &&
      @package_name == other.package_name && @policy == other.policy
end