Method: Aerospike::BatchUDF#==
- Defined in:
- lib/aerospike/batch_udf.rb
permalink #==(other) ⇒ Object
Optimized reference equality check to determine batch wire protocol repeat flag. For internal use only.
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 |