Sha256: 20913b3ffa3e23c302e250f508ac1d6c4e966c0ad2188661a3efc2c31282f05c

Contents?: true

Size: 1.6 KB

Versions: 25

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true
module Dynflow
  module ActiveJob
    module QueueAdapters
      module QueueMethods
        def enqueue(job)
          ::Rails.application.dynflow.world.trigger do |world|
            job.provider_job_id = job.job_id
            world.plan_with_options(id: job.provider_job_id, action_class: JobWrapper, args: [job.serialize])
          end
        end

        def enqueue_at(job, timestamp)
          job.provider_job_id = job.job_id
          ::Rails.application.dynflow.world
            .delay_with_options(id: job.provider_job_id,
                                action_class: JobWrapper,
                                delay_options: { :start_at => Time.at(timestamp) },
                                args: [job.serialize])
        end
      end

      # To use Dynflow, set the queue_adapter config to +:dynflow+.
      #
      #   Rails.application.config.active_job.queue_adapter = :dynflow
      class DynflowAdapter
        # For ActiveJob >= 5
        include QueueMethods

        # For ActiveJob <= 4
        extend QueueMethods
      end

      class JobWrapper < Dynflow::Action
        def queue
          input[:queue].to_sym
        end

        def plan(attributes)
          input[:job_class] = attributes['job_class']
          input[:queue] = attributes['queue_name']
          input[:job_data] = attributes
          plan_self
        end

        def run
          ::ActiveJob::Base.execute(input[:job_data])
        end

        def label
          input[:job_class]
        end

        def rescue_strategy
          Action::Rescue::Skip
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
dynflow-1.8.2 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.8.1 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.8.0 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.7.0 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.11 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.10 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.8 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.7 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.6 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.5 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.4 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.3 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.2 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.6.1 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.4.9 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.4.8 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.5.0 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.4.7 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.4.6 lib/dynflow/active_job/queue_adapter.rb
dynflow-1.4.5 lib/dynflow/active_job/queue_adapter.rb