Class: Skylight::Core::Normalizers::ActiveJob::EnqueueAt Private
- Inherits:
-
Normalizer
- Object
- Normalizer
- Skylight::Core::Normalizers::ActiveJob::EnqueueAt
- Defined in:
- lib/skylight/core/normalizers/active_job/enqueue_at.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary collapse
- CAT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
"other.job.enqueue_at".freeze
Instance Attribute Summary
Attributes inherited from Normalizer
Instance Method Summary collapse
Methods inherited from Normalizer
#initialize, #normalize_after, register
Constructor Details
This class inherits a constructor from Skylight::Core::Normalizers::Normalizer
Instance Method Details
#normalize(_trace, _name, payload) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 12 13 14 15 16 17 |
# File 'lib/skylight/core/normalizers/active_job/enqueue_at.rb', line 9 def normalize(_trace, _name, payload) title = "Enqueue #{payload[:job].class}" adapter_class_name = payload[:adapter].class.name adapter_name = adapter_class_name.match(/^ActiveJob::QueueAdapters::(\w+)Adapter$/)[1].underscore desc = "{ adapter: '#{adapter_name}', queue: '#{payload[:job].queue_name}' }" [ CAT, title, desc ] end |