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_oid, #to_s

Constructor Details

#initialize(value) ⇒ Counter64

Returns a new instance of Counter64.

Raises:

  • (ArgumentError)


407
408
409
410
411
# File 'lib/snmp/varbind.rb', line 407

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



399
400
401
# File 'lib/snmp/varbind.rb', line 399

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

Instance Method Details

#asn1_typeObject



403
404
405
# File 'lib/snmp/varbind.rb', line 403

def asn1_type
    "Counter64"
end

#encodeObject



413
414
415
# File 'lib/snmp/varbind.rb', line 413

def encode
    encode_tagged_integer(Counter64_TAG, @value)
end