Class: Puppet::Util::Watcher::Timer
- Defined in:
- lib/puppet/util/watcher/timer.rb
Instance Attribute Summary collapse
-
#timeout ⇒ Object
readonly
Returns the value of attribute timeout.
Instance Method Summary collapse
- #expired? ⇒ Boolean
-
#initialize(timeout) ⇒ Timer
constructor
A new instance of Timer.
- #now ⇒ Object
- #start ⇒ Object
Constructor Details
#initialize(timeout) ⇒ Timer
Returns a new instance of Timer.
6 7 8 |
# File 'lib/puppet/util/watcher/timer.rb', line 6 def initialize(timeout) @timeout = timeout end |
Instance Attribute Details
#timeout ⇒ Object (readonly)
Returns the value of attribute timeout.
4 5 6 |
# File 'lib/puppet/util/watcher/timer.rb', line 4 def timeout @timeout end |
Instance Method Details
#expired? ⇒ Boolean
14 15 16 |
# File 'lib/puppet/util/watcher/timer.rb', line 14 def expired? (now - @start_time) >= @timeout end |
#now ⇒ Object
18 19 20 |
# File 'lib/puppet/util/watcher/timer.rb', line 18 def now Time.now.to_i end |
#start ⇒ Object
10 11 12 |
# File 'lib/puppet/util/watcher/timer.rb', line 10 def start @start_time = now end |