aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters/resque_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add callbacks, implement instrumentation as callbacks, and have the enqueue ↵David Heinemeier Hansson2014-05-221-1/+1
| | | | methods return a job instance
* Rename Adapter.queue and .queue_at to .enqueue and .enqueue_at for consistency.Douwe Maan2014-05-211-2/+2
|
* Don't deserialize parameters in individual adapters.Douwe Maan2014-05-211-1/+1
| | | | It's not their responsibility and this makes logging (and rescuing from errors, eventually!) a lot easier.
* Remove unnecessary commentMike Perham2014-05-201-1/+0
|
* Implement enqueue_at/enqueue_inMike Perham2014-05-191-0/+6
| | | | | Delayed jobs are supported by all systems except QueueClassic. For it I decided to raise NotImplementedError. The inline implementation is a bit rough.
* Refactor Resque adapter to be more consistent with othersDouwe Maan2014-05-191-7/+3
|
* Move to instance method and document usageDavid Heinemeier Hansson2014-05-191-1/+1
|
* No need to qualify the Parameters class with the namespaceDavid Heinemeier Hansson2014-05-191-1/+1
|
* Inline the job wrappersDavid Heinemeier Hansson2014-05-191-2/+23
|
* 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-0/+13