Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes typo | Xavier Noria | 2011-11-05 | 1 | -1/+1 |
| | |||||
* | implements AS::Notifications.subscribed, which provides subscriptions to ↵ | Xavier Noria | 2011-11-05 | 1 | -0/+41 |
| | | | | events while a block runs | ||||
* | expands the documentation of AS::Notifications | Xavier Noria | 2011-11-05 | 1 | -14/+46 |
| | |||||
* | Removing unnecessary require, solve 'circular require considered harmful' ↵ | Jon Leighton | 2011-08-16 | 1 | -2/+0 |
| | | | | warning. | ||||
* | fanout unsubscribe only accepted one argument, so taking *args here is ↵ | Aaron Patterson | 2011-02-09 | 1 | -2/+2 |
| | | | | probably bad | ||||
* | just use an attr_accessor so we do not pay ||= on every notification call | Aaron Patterson | 2011-02-09 | 1 | -5/+3 |
| | |||||
* | speed up notification publishing by writing the delegate method | Aaron Patterson | 2011-02-09 | 1 | -1/+4 |
| | |||||
* | edit pass to apply API guideline wrt the use of "# =>" in example code | Xavier Noria | 2010-07-30 | 1 | -3/+3 |
| | |||||
* | fisting warning | Aaron Patterson | 2010-07-25 | 1 | -1/+1 |
| | |||||
* | Revert the previous three commits. | José Valim | 2010-07-25 | 1 | -13/+3 |
| | | | | | | * AS::Notifications#instrument should not measure anything, it is not its responsibility; * Adding another argument to AS::Notifications#instrument API needs to be properly discussed; | ||||
* | use a hash to collect optional statistics about the instrumentation | Aaron Patterson | 2010-07-25 | 1 | -3/+13 |
| | |||||
* | Performance optimizations to handle cases of instrumentors that are not ↵ | Carlhuda | 2010-07-22 | 1 | -2/+22 |
| | | | | listened to. Also, fix a possible concurrency issue. | ||||
* | Notifier API == Fanout API, so replace Notifier with Fanout as they quack ↵ | Aaron Patterson | 2010-07-18 | 1 | -23/+1 |
| | | | | the same | ||||
* | bind method is not needed, so goodbye! <3 <3 <3 | Aaron Patterson | 2010-07-18 | 1 | -1/+1 |
| | |||||
* | Remove documentation reference to AS::Notifications::Event#result because it ↵ | Hongli Lai (Phusion) | 2010-06-17 | 1 | -1/+0 |
| | | | | has been removed. | ||||
* | Fix a bunch of minor spelling mistakes | Evgeniy Dolzhenko | 2010-06-11 | 1 | -1/+1 |
| | |||||
* | Optimize AS::Notifications to remember which subscribers don't match and not ↵ | Carlhuda | 2010-03-01 | 1 | -1/+1 |
| | | | | run them. This will allow notifications that are only useful in dev or testing to run efficiently in production. | ||||
* | You can unsubscribe a subscriber | Carlhuda | 2010-03-01 | 1 | -0/+4 |
| | |||||
* | Rename Rails::Subscriber to Rails::LogSubscriber | Prem Sichanugrist | 2010-02-16 | 1 | -2/+2 |
| | |||||
* | Remove instrument! and require thread from AS::Notifications. | José Valim | 2010-02-04 | 1 | -1/+1 |
| | |||||
* | Add ActionDispatch::Notifications middleware. | José Valim | 2010-01-17 | 1 | -1/+1 |
| | |||||
* | Yield the payload notifications for further modification (like adding the ↵ | José Valim | 2010-01-15 | 1 | -1/+1 |
| | | | | result). | ||||
* | Add instrument! to notifications which adds the result to the payload. | José Valim | 2010-01-14 | 1 | -1/+1 |
| | |||||
* | instrumenter should be accessible from ActiveSupport::Notifications. | José Valim | 2010-01-06 | 1 | -8/+6 |
| | |||||
* | Notifications: extract central Notifier, cordon off the internal Fanout ↵ | Jeremy Kemper | 2009-11-28 | 1 | -132/+16 |
| | | | | implementation, and segregate instrumentation concerns | ||||
* | Remark that Listener is an implementation detail | Jeremy Kemper | 2009-11-28 | 1 | -1/+2 |
| | |||||
* | Expose a simple Queue#wait to block until all notifications are drained | Jeremy Kemper | 2009-11-28 | 1 | -2/+7 |
| | |||||
* | Revert "Create SyncListener. Since they do not rely on Thread, they can be ↵ | Jeremy Kemper | 2009-11-28 | 1 | -58/+34 |
| | | | | | | | | used on Google App Engine." Take a step back on this API direction. This reverts commit 8104f65c3225453d13307c3c2733c2a8f99e491a. | ||||
* | Create SyncListener. Since they do not rely on Thread, they can be used on ↵ | José Valim | 2009-11-23 | 1 | -34/+58 |
| | | | | | | Google App Engine. Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local> | ||||
* | Notifications: queue.drained? for testability in place of brittle sleeps | Jeremy Kemper | 2009-11-13 | 1 | -9/+7 |
| | |||||
* | Silence spurious warning | Jeremy Kemper | 2009-11-09 | 1 | -1/+1 |
| | |||||
* | Change Event#thread_id to #transaction_id. Defaults to one "transaction" per ↵ | Yehuda Katz | 2009-10-28 | 1 | -13/+12 |
| | | | | thread but you can explicitly declare the start of a new one. This makes it possible for each request to have it own id. | ||||
* | Make it possible to have IDs per request | Yehuda Katz | 2009-10-28 | 1 | -2/+18 |
| | |||||
* | AS::Notifications.subscribe blocks are now yielded the arguments to pass to ↵ | Yehuda Katz | 2009-10-27 | 1 | -1/+1 |
| | | | | AS::Notifications::Event.new | ||||
* | Fix broken tests | Jeremy Kemper | 2009-10-27 | 1 | -0/+1 |
| | |||||
* | Some optimizations on AS::Notifications. This does not change the ↵ | Yehuda Katz | 2009-10-27 | 1 | -29/+33 |
| | | | | public-facing API. | ||||
* | Renamed Orchestra to Notifications once again [#3321 state:resolved] | José Valim | 2009-10-15 | 1 | -0/+171 |
| | |||||
* | Revert "Rename Orchestra to Notifications [#3321 state:resolved]" | José Valim | 2009-10-15 | 1 | -103/+0 |
| | | | | This reverts commit 8cbf825425dc8ad3770881ea4e100b9023c69ce2. | ||||
* | Rename Orchestra to Notifications [#3321 state:resolved] | Joshua Peek | 2009-10-14 | 1 | -0/+103 |