aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-17 11:17:42 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-17 11:29:51 +0100
commit0334f9f6cfa4c4c746de7e19250a13366b616c55 (patch)
tree9e2ff5d7efac90c26f3256d26d0789c14424ab7e /activesupport/lib/active_support/notifications
parentafd0c06dfa8d3e04e85f9f0ea65c9beb376cb79f (diff)
downloadrails-0334f9f6cfa4c4c746de7e19250a13366b616c55.tar.gz
rails-0334f9f6cfa4c4c746de7e19250a13366b616c55.tar.bz2
rails-0334f9f6cfa4c4c746de7e19250a13366b616c55.zip
Add ActionDispatch::Notifications middleware.
Diffstat (limited to 'activesupport/lib/active_support/notifications')
-rw-r--r--activesupport/lib/active_support/notifications/instrumenter.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/notifications/instrumenter.rb b/activesupport/lib/active_support/notifications/instrumenter.rb
index f3d877efe7..7c5b118ee3 100644
--- a/activesupport/lib/active_support/notifications/instrumenter.rb
+++ b/activesupport/lib/active_support/notifications/instrumenter.rb
@@ -20,6 +20,15 @@ module ActiveSupport
result
end
+ # The same as instrument, but sends the notification even if the yielded
+ # block raises an error.
+ def instrument!(name, payload={})
+ time = Time.now
+ yield(payload) if block_given?
+ ensure
+ @notifier.publish(name, time, Time.now, @id, payload)
+ end
+
private
def unique_id
SecureRandom.hex(10)