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.



85
86
87
# File 'lib/net/snmp.rb', line 85

def initialize value
		@value = value
end

Instance Method Details

#to_berObject



88
89
90
# File 'lib/net/snmp.rb', line 88

def to_ber
		@value.to_ber_application(3)
end