Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copy-edits at Rails::Queueing documentation | Rafael Mendonça França | 2012-07-21 | 1 | -2/+2 |
| | |||||
* | adding Rails::Queueing::Container | Aaron Patterson | 2012-07-19 | 1 | -0/+27 |
| | | | | | | | | | | | | | | | This allows us to do: In your configuration: Rails.queue[:image_queue] = SomeQueue.new Rails.queue[:mail_queue] = SomeQueue.new In your app code: Rails.queue[:mail_queue].push MailJob.new Both jobs pushed to the same default queue Rails.queue.push DefaultJob.new Rails.queue[:default].push DefaultJob.new | ||||
* | Ensure test jobs are marshallable | Paul Battley | 2012-07-03 | 1 | -0/+7 |
| | | | | | | | | | | By marshalling and unmarshalling jobs when adding them to the test queue, we can ensure that jobs created during test runs are valid candidates for marshalling, and, thus, that they can be used with queueing backends other than the default simple in-process implementation. This will also be used in a subsequent commit to ensure that jobs pushed to the queue do not contain a reference to the queue itself. | ||||
* | Add some docs and changelog entry | Carlos Antonio da Silva | 2012-05-04 | 1 | -2/+2 |
| | |||||
* | Allow overriding exception handling in threaded consumer | Carlos Antonio da Silva | 2012-05-04 | 1 | -1/+5 |
| | |||||
* | Use Rails::Queueing::Queue instead of Queue so people can build their own ↵ | José Valim | 2012-04-28 | 1 | -0/+8 |
| | | | | consumers around stdlib's Queue | ||||
* | Fix failing test, TestQueue#contents is not #jobs | Carlos Antonio da Silva | 2012-04-27 | 1 | -1/+1 |
| | |||||
* | Merge pull request #6021 from sikachu/log_exception | José Valim | 2012-04-27 | 1 | -1/+5 |
|\ | | | | | Log the exception from the ThreadConsumer | ||||
| * | Log the exception from the ThreadConsumer | Prem Sichanugrist | 2012-04-27 | 1 | -1/+5 |
| | | | | | | | | This will make sure you know when there's an exception occur. | ||||
* | | adding the `jobs` method to the test queue for getting a list of test | Aaron Patterson | 2012-04-27 | 1 | -0/+8 |
|/ | | | | jobs. | ||||
* | Extend stdlib queue for the test queue | Aaron Patterson | 2012-04-27 | 1 | -18/+2 |
| | |||||
* | fixes run order in Rails::Queueing::TestQueue | Vsevolod Romashov | 2012-04-28 | 1 | -1/+1 |
| | |||||
* | Missing git add :trollface: | Yehuda Katz | 2012-04-26 | 1 | -0/+65 |