class Puppet::Util::Profiler::Aggregate::Timer

Public Instance Methods

stop() click to toggle source
# File lib/puppet/util/profiler/aggregate.rb, line 80
def stop
  Time.now - @start
end

Public Class Methods

new() click to toggle source
# File lib/puppet/util/profiler/aggregate.rb, line 76
def initialize
  @start = Time.now
end