module ActiveJob::Trackable::Core::ClassMethods

Provide `.trackable` class method which can be used to configure tracker behavior

Public Instance Methods

trackable(options) click to toggle source

Configure trackable, supported options:

- debounced: boolean (default: false)
- throttled: duration (default: nil)
# File lib/activejob/trackable/core.rb, line 82
def trackable(options)
  trackable_options.merge! options
end