Module: Datadog::Core::Workers::Queue::PrependedMethods Private
- Defined in:
- lib/datadog/core/workers/queue.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Methods that must be prepended
Instance Method Summary collapse
- #perform(*args) ⇒ Object private
Instance Method Details
#perform(*args) ⇒ 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.
26 27 28 29 30 31 |
# File 'lib/datadog/core/workers/queue.rb', line 26 def perform(*args) if work_pending? work = dequeue super(*work) end end |