Sha256: 27588443b0ffe6733b172f231ea75805fab918989f69938522db6092a1642445
Contents?: true
Size: 555 Bytes
Versions: 2
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true # To create outside of Rails, insert a row with values for the following columns # into the `delayed_jobs` table: # # handler: {see h7_message_example.yml} # run_at: {current_time} # # Notes: # # - the key `raw_message` for the `handler` column must have line endings "\n" # - to run delayed_jobs see in development use rake jobs:work # FeedJob = Struct.new(:raw_message) do def perform Renalware::Feeds .message_processor .broadcasting_to_configured_subscribers .call(raw_message) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
renalware-core-2.0.43 | app/jobs/feed_job.rb |
renalware-core-2.0.42 | app/jobs/feed_job.rb |