1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

convert duration to an attr_reader

This commit is contained in:
Aaron Patterson 2010-07-17 15:53:22 -07:00
parent cebe5c2fac
commit cfca55949f

View file

@ -33,7 +33,7 @@ module ActiveSupport
end
class Event
attr_reader :name, :time, :end, :transaction_id, :payload
attr_reader :name, :time, :end, :transaction_id, :payload, :duration
def initialize(name, start, ending, transaction_id, payload)
@name = name
@ -41,14 +41,11 @@ module ActiveSupport
@time = start
@transaction_id = transaction_id
@end = ending
end
def duration
@duration ||= 1000.0 * (@end - @time)
@duration = 1000.0 * (@end - @time)
end
def parent_of?(event)
start = (self.time - event.time) * 1000
start = (time - event.time) * 1000
start <= 0 && (start + duration >= event.duration)
end
end