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.



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

def initialize value
  @value = value
end

Instance Method Details

#to_berObject



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

def to_ber
  @value.to_ber_application(3)
end