Class: Aerospike::IntegerValue
- Defined in:
- lib/aerospike/value/value.rb
Overview
Integer value.
Instance Method Summary collapse
- #estimate_size ⇒ Object
- #get ⇒ Object
-
#initialize(val) ⇒ IntegerValue
constructor
:nodoc:.
- #pack(packer) ⇒ Object
- #to_bytes ⇒ Object
- #to_s ⇒ Object
- #type ⇒ Object
- #write(buffer, offset) ⇒ Object
Methods inherited from Value
Constructor Details
#initialize(val) ⇒ IntegerValue
:nodoc:
190 191 192 193 |
# File 'lib/aerospike/value/value.rb', line 190 def initialize(val) @value = val || 0 self end |
Instance Method Details
#estimate_size ⇒ Object
195 196 197 |
# File 'lib/aerospike/value/value.rb', line 195 def estimate_size 8 end |
#get ⇒ Object
212 213 214 |
# File 'lib/aerospike/value/value.rb', line 212 def get @value end |
#pack(packer) ⇒ Object
204 205 206 |
# File 'lib/aerospike/value/value.rb', line 204 def pack(packer) packer.write(@value) end |
#to_bytes ⇒ Object
216 217 218 219 220 |
# File 'lib/aerospike/value/value.rb', line 216 def to_bytes # Convert integer to big endian unsigned 64 bits. # @see http://ruby-doc.org/core-2.3.0/Array.html#method-i-pack [@value].pack('Q>') end |
#to_s ⇒ Object
222 223 224 |
# File 'lib/aerospike/value/value.rb', line 222 def to_s @value.to_s end |
#type ⇒ Object
208 209 210 |
# File 'lib/aerospike/value/value.rb', line 208 def type Aerospike::ParticleType::INTEGER end |
#write(buffer, offset) ⇒ Object
199 200 201 202 |
# File 'lib/aerospike/value/value.rb', line 199 def write(buffer, offset) buffer.write_int64(@value, offset) 8 end |