aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters/inline_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add callbacks, implement instrumentation as callbacks, and have the enqueue ↵David Heinemeier Hansson2014-05-221-2/+2
| | | | 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-2/+2
| | | | It's not their responsibility and this makes logging (and rescuing from errors, eventually!) a lot easier.
* StyleDavid Heinemeier Hansson2014-05-201-4/+4
|
* More feedbackMike Perham2014-05-201-2/+1
|
* merge masterMike Perham2014-05-201-1/+1
|\
* | Fix boogs, stub not implemented adaptersMike Perham2014-05-201-1/+1
| |
* | Add logging for enqueued_at and perform errorsMike Perham2014-05-201-1/+1
| |
* | Implement enqueue_at/enqueue_inMike Perham2014-05-191-1/+14
|/ | | | | Delayed jobs are supported by all systems except QueueClassic. For it I decided to raise NotImplementedError. The inline implementation is a bit rough.
* 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
|
* Add GlobalID support for serializationDavid Heinemeier Hansson2014-05-191-1/+1
|
* Rename to InlineAdapter to match *Adapter form, even if the queue is ↵David Heinemeier Hansson2014-05-181-0/+11
embedded in there too