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:
300 301 302 303 |
# File 'lib/aerospike/value/value.rb', line 300 def initialize(val) @value = val || 0 self end |
Instance Method Details
#estimate_size ⇒ Object
305 306 307 |
# File 'lib/aerospike/value/value.rb', line 305 def estimate_size 8 end |
#get ⇒ Object
322 323 324 |
# File 'lib/aerospike/value/value.rb', line 322 def get @value end |
#pack(packer) ⇒ Object
314 315 316 |
# File 'lib/aerospike/value/value.rb', line 314 def pack(packer) packer.write(@value) end |
#to_bytes ⇒ Object
326 327 328 329 330 |
# File 'lib/aerospike/value/value.rb', line 326 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
332 333 334 |
# File 'lib/aerospike/value/value.rb', line 332 def to_s @value.to_s end |
#type ⇒ Object
318 319 320 |
# File 'lib/aerospike/value/value.rb', line 318 def type Aerospike::ParticleType::INTEGER end |
#write(buffer, offset) ⇒ Object
309 310 311 312 |
# File 'lib/aerospike/value/value.rb', line 309 def write(buffer, offset) buffer.write_int64(@value, offset) 8 end |