Active Job Abstract Adapter
Active Job supports multiple job queue systems. ActiveJob::QueueAdapters::AbstractAdapter
forms the abstraction layer which makes this possible.
Methods
Instance Public methods
enqueue(job) Link
enqueue_after_transaction_commit?() Link
Defines whether enqueuing should happen implicitly to after commit when called from inside a transaction. Most adapters should return true, but some adapters that use the same database as Active Record and are transaction aware can return false to continue enqueuing jobs as part of the transaction.