Class: Aerospike::Exp::Def

Inherits:
Aerospike::Exp show all
Defined in:
lib/aerospike/exp/exp.rb

Constant Summary

Constants inherited from Aerospike::Exp

MODIFY

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Aerospike::Exp

abs, add, and, arshift, bin, bin_exists, bin_type, blob_bin, blob_val, bool_bin, bool_val, build, #bytes, ceil, cond, count, def, device_size, digest_modulo, div, eq, exclusive, float_bin, float_val, floor, ge, geo, geo_bin, geo_compare, gt, hll_bin, int_and, int_bin, int_not, int_or, int_val, int_xor, is_tombstone, key, key_exists, last_update, le, let, list_bin, list_val, log, lscan, lshift, lt, map_bin, map_val, max, memory_size, min, mod, mul, ne, nil_val, not, or, pow, record_size, regex_compare, rscan, rshift, set_name, since_update, #size, str_bin, str_val, sub, to_float, to_int, ttl, unknown, var, void_time, #write

Constructor Details

#initialize(name, exp) ⇒ Def

Returns a new instance of Def.



1166
1167
1168
1169
# File 'lib/aerospike/exp/exp.rb', line 1166

def initialize(name, exp)
  @name = name
  @exp = exp
end

Instance Attribute Details

#expObject (readonly)

Returns the value of attribute exp.



1164
1165
1166
# File 'lib/aerospike/exp/exp.rb', line 1164

def exp
  @exp
end

#nameObject (readonly)

Returns the value of attribute name.



1163
1164
1165
# File 'lib/aerospike/exp/exp.rb', line 1163

def name
  @name
end

Instance Method Details

#pack(packer) ⇒ Object



1171
1172
1173
1174
# File 'lib/aerospike/exp/exp.rb', line 1171

def pack(packer)
  packer.write(@name)
  @exp.pack(packer)
end