Class: ActiveJob::QueueAdapters::KarafkaAdapter
- Inherits:
-
Object
- Object
- ActiveJob::QueueAdapters::KarafkaAdapter
- Defined in:
- lib/active_job/queue_adapters/karafka_adapter.rb
Overview
Karafka adapter for enqueuing jobs This is here for ease of integration with ActiveJob.
Instance Method Summary collapse
-
#enqueue(job) ⇒ Object
Enqueues the job using the configured dispatcher.
-
#enqueue_after_transaction_commit? ⇒ true
Should we by default enqueue after the transaction and not during.
-
#enqueue_all(jobs) ⇒ Integer
Enqueues multiple jobs in one go.
-
#enqueue_at(job, timestamp) ⇒ Object
Delegates time sensitive dispatch to the dispatcher.
Instance Method Details
#enqueue(job) ⇒ Object
Enqueues the job using the configured dispatcher
17 18 19 |
# File 'lib/active_job/queue_adapters/karafka_adapter.rb', line 17 def enqueue(job) dispatcher.dispatch(job) end |
#enqueue_after_transaction_commit? ⇒ true
Returns should we by default enqueue after the transaction and not during. Defaults to true to prevent weird issues during rollbacks, etc.
40 41 42 |
# File 'lib/active_job/queue_adapters/karafka_adapter.rb', line 40 def enqueue_after_transaction_commit? true end |
#enqueue_all(jobs) ⇒ Integer
Enqueues multiple jobs in one go
24 25 26 27 |
# File 'lib/active_job/queue_adapters/karafka_adapter.rb', line 24 def enqueue_all(jobs) dispatcher.dispatch_many(jobs) jobs.size end |
#enqueue_at(job, timestamp) ⇒ Object
Delegates time sensitive dispatch to the dispatcher. OSS will raise error, Pro will handle this as it supports scheduled messages.
34 35 36 |
# File 'lib/active_job/queue_adapters/karafka_adapter.rb', line 34 def enqueue_at(job, ) dispatcher.dispatch_at(job, ) end |