Class: SNMP::Counter64

Inherits:
Integer show all
Defined in:
lib/snmp/varbind.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Integer

#<=>, #coerce, #to_f, #to_i, #to_s

Constructor Details

#initialize(value) ⇒ Counter64

Returns a new instance of Counter64.

Raises:

  • (ArgumentError)


350
351
352
353
354
# File 'lib/snmp/varbind.rb', line 350

def initialize(value)
    super(value)
    raise ArgumentError, "Negative integer invalid: #{value}" if value < 0
    raise ArgumentError, "Out of range: #{value}" if value > 18446744073709551615
end

Class Method Details

.decode(value_data) ⇒ Object



342
343
344
# File 'lib/snmp/varbind.rb', line 342

def self.decode(value_data)
    Counter64.new(decode_integer_value(value_data))
end

Instance Method Details

#asn1_typeObject



346
347
348
# File 'lib/snmp/varbind.rb', line 346

def asn1_type
    "Counter64"
end

#encodeObject



356
357
358
# File 'lib/snmp/varbind.rb', line 356

def encode
    encode_tagged_integer(Counter64_TAG, @value)
end