Class: ActiveSupport::Notifications::Event

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/notifications/instrumenter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, start, ending, transaction_id, payload) ⇒ Event

Returns a new instance of Event.



58
59
60
61
62
63
64
65
66
# File 'lib/active_support/notifications/instrumenter.rb', line 58

def initialize(name, start, ending, transaction_id, payload)
  @name           = name
  @payload        = payload.dup
  @time           = start
  @transaction_id = transaction_id
  @end            = ending
  @children       = []
  @duration       = nil
end

Instance Attribute Details

#childrenObject (readonly)

Returns the value of attribute children.



55
56
57
# File 'lib/active_support/notifications/instrumenter.rb', line 55

def children
  @children
end

#endObject

Returns the value of attribute end.



56
57
58
# File 'lib/active_support/notifications/instrumenter.rb', line 56

def end
  @end
end

#nameObject (readonly)

Returns the value of attribute name.



55
56
57
# File 'lib/active_support/notifications/instrumenter.rb', line 55

def name
  @name
end

#payloadObject (readonly)

Returns the value of attribute payload.



55
56
57
# File 'lib/active_support/notifications/instrumenter.rb', line 55

def payload
  @payload
end

#timeObject (readonly)

Returns the value of attribute time.



55
56
57
# File 'lib/active_support/notifications/instrumenter.rb', line 55

def time
  @time
end

#transaction_idObject (readonly)

Returns the value of attribute transaction_id.



55
56
57
# File 'lib/active_support/notifications/instrumenter.rb', line 55

def transaction_id
  @transaction_id
end

Instance Method Details

#<<(event) ⇒ Object



84
85
86
# File 'lib/active_support/notifications/instrumenter.rb', line 84

def <<(event)
  @children << event
end

#durationObject

Returns the difference in milliseconds between when the execution of the event started and when it ended.

ActiveSupport::Notifications.subscribe('wait') do |*args|
  @event = ActiveSupport::Notifications::Event.new(*args)
end

ActiveSupport::Notifications.instrument('wait') do
  sleep 1
end

@event.duration # => 1000.138


80
81
82
# File 'lib/active_support/notifications/instrumenter.rb', line 80

def duration
  @duration ||= 1000.0 * (self.end - time)
end

#parent_of?(event) ⇒ Boolean

Returns:

  • (Boolean)


88
89
90
# File 'lib/active_support/notifications/instrumenter.rb', line 88

def parent_of?(event)
  @children.include? event
end