Sha256: c606971e2a9b0f647f5c68157a754d47c7f3510d5cb61175b83004f39c0a52c3

Contents?: true

Size: 715 Bytes

Versions: 1

Compression:

Stored size: 715 Bytes

Contents

# frozen_string_literal: true

require "delayed_job"

module ActiveWebhook
  module Queueing
    class DelayedJobAdapter < BaseAdapter
      protected

      def promise_subscription(subscription:, hook:)
        ActiveWebhook.queueing_adapter.fulfill_subscription(
          subscription: subscription,
          hook: hook,
          # NOTE: not implemented yet;
          # SEE: https://stackoverflow.com/questions/21590798/referencing-delayed-job-job-id-from-within-the-job-task
          # job_id: ???
          **context
        )
      end
      handle_asynchronously :promise_subscription

      def promise_topic
        fulfill_topic
      end
      handle_asynchronously :promise_topic
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_webhook-1.0.0 lib/active_webhook/queueing/delayed_job_adapter.rb