aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters
Commit message (Collapse)AuthorAgeFilesLines
* Implemented :qu adapterCristian Bica2014-06-121-0/+28
|
* Raise exception for scheduling jobs in the inline adapterCristian Bica2014-06-031-10/+2
|
* Sidekiq::Client does not support symbols as keysAbdelkader Boudih2014-05-291-0/+1
|
* Tagged loggingCristian Bica2014-05-291-3/+3
|
* Rename #perform_with_hooks to #executionDavid Heinemeier Hansson2014-05-229-10/+10
|
* Add callbacks, implement instrumentation as callbacks, and have the enqueue ↵David Heinemeier Hansson2014-05-229-10/+10
| | | | methods return a job instance
* Rename Adapter.queue and .queue_at to .enqueue and .enqueue_at for consistency.Douwe Maan2014-05-219-18/+18
|
* Don't deserialize parameters in individual adapters.Douwe Maan2014-05-219-11/+11
| | | | It's not their responsibility and this makes logging (and rescuing from errors, eventually!) a lot easier.
* StyleDavid Heinemeier Hansson2014-05-201-1/+1
|
* Highlight difference by placing addition at the endDavid Heinemeier Hansson2014-05-201-2/+2
|
* StyleDavid Heinemeier Hansson2014-05-201-4/+4
|
* Remove unnecessary commentMike Perham2014-05-201-1/+0
|
* Switch to NIEMike Perham2014-05-201-6/+1
|
* cleanupMike Perham2014-05-201-7/+3
|
* More feedbackMike Perham2014-05-201-2/+1
|
* merge masterMike Perham2014-05-205-8/+50
|\
| * Merge pull request #43 from mytrile/masterDavid Heinemeier Hansson2014-05-201-0/+21
| |\ | | | | | | Adding backburner(beanstalks client) adapter
| | * Adds backburner adapterDimitar Kostov2014-05-201-0/+21
| | |
| * | Merge pull request #44 from DouweM/patch-1Rafael Mendonça França2014-05-201-3/+7
| |\ \ | | | | | | | | Have Sneakers adapter take queue_name into account.
| | * | Have Sneakers adapter take queue_name into account.Douwe Maan2014-05-201-3/+7
| | |/
| * | StylingDavid Heinemeier Hansson2014-05-201-7/+6
| | |
| * | Merge pull request #38 from mperham/rework_sidekiqDavid Heinemeier Hansson2014-05-201-2/+7
| |\ \ | | |/ | |/| Reimplement Sidekiq adapter
| | * Remove all Sidekiq-specific stuff from job, enable retries by defaultMike Perham2014-05-201-7/+5
| | |
| | * Reimplement Sidekiq workerMike Perham2014-05-191-2/+9
| | | | | | | | | | | | | | | This better integrates various Sidekiq features into AJ jobs. Things like the JID will be set as expected and the user can use `sidekiq_options` in AJ::Base subclasses as usual to configure various features.
* | | Fix boogs, stub not implemented adaptersMike Perham2014-05-203-1/+9
| | |
* | | Add logging for enqueued_at and perform errorsMike Perham2014-05-201-1/+1
| | |
* | | Move past time check out of adaptersMike Perham2014-05-202-9/+1
| | |
* | | merge masterMike Perham2014-05-204-4/+45
|\| |
| * | Merge pull request #42 from zhouguangming/refactorDavid Heinemeier Hansson2014-05-202-5/+4
| |\ \ | | | | | | | | Make consistent code style
| | * | Make consistent code stylezhouguangming2014-05-202-5/+4
| | | |
| * | | Merge pull request #45 from DouweM/patch-2David Heinemeier Hansson2014-05-201-2/+1
| |\ \ \ | | | | | | | | | | Determine full class name dynamically in QC adapter.
| | * | | Determine full class name dynamically in QC adapter.Douwe Maan2014-05-201-2/+1
| | |/ /
| * / / Add Que Adapter/WrapperAbdelkader Boudih2014-05-201-0/+19
| |/ /
| * / Add Sneakers wrapperJohn DeSilva2014-05-201-0/+24
| |/
* | remove debuggingMike Perham2014-05-191-1/+1
| |
* | Implement enqueue_at/enqueue_inMike Perham2014-05-196-2/+50
|/ | | | | Delayed jobs are supported by all systems except QueueClassic. For it I decided to raise NotImplementedError. The inline implementation is a bit rough.
* Implemented queue_classic adapterCristian Bica2014-05-201-0/+20
|
* Refactor Resque adapter to be more consistent with othersDouwe Maan2014-05-191-7/+3
|
* StylingDavid Heinemeier Hansson2014-05-191-1/+1
|
* Have Sidekiq adapter take queue_name into account.Douwe Maan2014-05-191-1/+1
|
* Move to instance method and document usageDavid Heinemeier Hansson2014-05-195-5/+5
|
* No need to qualify the Parameters class with the namespaceDavid Heinemeier Hansson2014-05-195-5/+5
|
* Inline the job wrappersDavid Heinemeier Hansson2014-05-194-8/+48
|
* Add GlobalID support for serializationDavid Heinemeier Hansson2014-05-192-2/+3
|
* Implemented delayed jobCristian Bica2014-05-191-0/+13
|
* Add Sucker Punch adapter/wrapperAbdelkader Boudih2014-05-181-0/+14
|
* Add Sidekiq adapter/wrapper fixes #3Abdelkader Boudih2014-05-181-0/+14
|
* Queue naming with a base, which requires a JobWrapper to comply to Resques ↵David Heinemeier Hansson2014-05-181-1/+2
| | | | expectation of a class variable
* Add ResqueAdapter and provide test infrastructure for the now multiple adaptersDavid Heinemeier Hansson2014-05-181-2/+4
|
* Rename to InlineAdapter to match *Adapter form, even if the queue is ↵David Heinemeier Hansson2014-05-181-0/+11
| | | | embedded in there too