Class: Net::SNMP::TimeTicks32

Inherits:
Object
  • Object
show all
Defined in:
lib/net/snmp.rb

Overview

SNMP 32-bit timer-ticks. Defined in RFC1155 (Structure of Mangement Information), section 6. A 32-bit counter is an ASN.1 application [3] implicit unsigned integer.

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ TimeTicks32

Returns a new instance of TimeTicks32.



58
59
60
# File 'lib/net/snmp.rb', line 58

def initialize value
		@value = value
end

Instance Method Details

#to_berObject



61
62
63
# File 'lib/net/snmp.rb', line 61

def to_ber
		@value.to_ber_application(3)
end