aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications
Commit message (Expand)AuthorAgeFilesLines
* Require only necessary concurrent-ruby classes.Jerry D'Antonio2015-11-041-1/+1
* Replaced `ThreadSafe::Map` with successor `Concurrent::Map`.Jerry D'Antonio2015-09-191-3/+3
* :nodoc: internal class [ci skip]Godfrey Chan2015-08-101-1/+1
* Replace `#=>` with `# =>` [ci skip]claudiob2014-12-171-1/+1
* Fix docs for AS::Notifications::Event#durationclaudiob2014-12-171-2/+2
* Add docs for AS::Notifications::Event#durationclaudiob2014-12-171-0/+12
* Avoid looping through subscribers when unsubscribing with a subscriber object.Guo Xiang Tan2014-06-011-5/+10
* Update documentation to reflect unsubscription with name.Guo Xiang Tan2014-06-011-2/+2
* use a thread local rather than a queue so events are in the right orderAaron Patterson2013-10-301-7/+4
* use a queue rather than a list. fixes #12069Aaron Patterson2013-10-281-1/+1
* duration is called multiple times in dev, so lets cache itAaron Patterson2013-08-181-1/+2
* Bug fix: Evented notification subscribers can handle published eventsCarl Lerche2013-05-171-0/+7
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-03-301-1/+1
|\
| * Fix some typosAkira Matsuda2013-03-251-1/+1
* | ActiveSupport::Notifications::Instrumenter#instrument should yieldstopdropandrew2013-03-021-1/+1
|/
* adding start / finish on the instrumenter, adding tests for the classAaron Patterson2013-01-091-6/+17
* Replace some global Hash usages with the new thread safe cache.thedarkone2012-12-141-2/+5
* update AS/notifications and AS/testing docs [ci skip]Francesco Rodriguez2012-09-141-1/+1
* Evented notifications take priority over Timed notificationsEric Saxby2012-08-111-3/+3
* move fanout back to a global variable, add a mutex for safetyAaron Patterson2012-06-191-7/+17
* Add missing requireRafael Mendonça França2012-06-191-0/+2
* subscribers are per thread, so remove the nested hash accessAaron Patterson2012-06-191-5/+3
* documenting concurrency rules for the Fanout classAaron Patterson2012-06-191-0/+3
* make events not use date and time to determine parent_of. fixes #5932タコ焼き仮面2012-06-181-4/+12
* evented listeners can subscribe to any messageAaron Patterson2012-03-211-9/+27
* evented subscribers workAaron Patterson2012-03-211-6/+10
* start / finish events are sent by the instrumenterAaron Patterson2012-03-212-7/+41
* split subscribers based on pattern typeAaron Patterson2012-03-211-13/+31
* Remove deprecation from AS::Deprecation behavior, some minor cleanupsCarlos Antonio da Silva2012-03-162-6/+3
* Removed ActiveSupport::SecureRandom in favour of SecureRandom from the standa...Jon Leighton2011-05-231-1/+0
* minor changesVijay Dev2011-04-271-3/+3
* Revert the previous three commits.José Valim2010-07-251-7/+4
* use a hash to collect optional statistics about the instrumentationAaron Patterson2010-07-251-4/+7
* Get rid of instrumenter.elapsed.José Valim2010-07-241-9/+3
* Performance optimizations to handle cases of instrumentors that are not liste...Carlhuda2010-07-222-4/+9
* Add a test for elapsed and require missing benchmark file.José Valim2010-07-201-2/+2
* reusing the time instrumentation from the instrumenter rather than Benchmark....Aaron Patterson2010-07-191-2/+9
* Minor performance improvment in notifications/fanout and active_record/log_su...Daniel Guettler2010-07-191-7/+5
* avoid call to Array#firstAaron Patterson2010-07-191-3/+3
* subscriber does not need to be a block, but an object that responds to #callAaron Patterson2010-07-181-5/+5
* tap the subscriber for easier return valueAaron Patterson2010-07-181-2/+3
* bind method is not needed, so goodbye! <3 <3 <3Aaron Patterson2010-07-181-7/+1
* convert duration to an attr_readerAaron Patterson2010-07-171-6/+3
* drained? is never calledAaron Patterson2010-07-171-4/+0
* private method is not neededAaron Patterson2010-07-171-12/+2
* removing Binding classAaron Patterson2010-07-171-14/+4
* use === to avoid regular expression creation, and speed up string comparisonAaron Patterson2010-07-171-9/+3
* Event should be aware if yielded block failed or not.José Valim2010-05-021-3/+5
* Make notifications go off even when an error is raised, so that we capture th...Justin George2010-05-021-3/+7
* allow unsubscribe by name or subscription [#4433 state:resolved]David Chelimsky2010-04-241-5/+15