class Webmachine::Events::InstrumentedEvent

{Webmachine::Events::InstrumentedEvent} delegates to [AS::Notifications::Event](rubydoc.info/gems/as-notifications/AS/Notifications/Event).

The class [AS::Notifications::Event](rubydoc.info/gems/as-notifications/AS/Notifications/Event) is able to take the arguments of an {Webmachine::Events.instrument} event and provide an object-oriented interface to that data.

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/webmachine/events/instrumented_event.rb, line 14
def initialize(*args)
  super(AS::Notifications::Event.new(*args))
end