aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/multiple_kwargs_job.rb
blob: b355c4ce1a86551d4ca03a795a8f323773ff477e (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require_relative "../support/job_buffer"

class MultipleKwargsJob < ActiveJob::Base
  def perform(argument1:, argument2:)
    JobBuffer.add("Job with argument1: #{argument1}, argument2: #{argument2}")
  end
end