Chatwoot/app/dispatchers/async_dispatcher.rb
Sojan Jose 98e2a9b8b5
feat: Builder for creating Campaign conversations (#2192)
- Builder for creating Campaign conversations
- Widget endpoint to fetch the campaigns
2021-05-03 20:23:09 +05:30

19 lines
528 B
Ruby

class AsyncDispatcher < BaseDispatcher
def dispatch(event_name, timestamp, data)
EventDispatcherJob.perform_later(event_name, timestamp, data)
end
def publish_event(event_name, timestamp, data)
event_object = Events::Base.new(event_name, timestamp, data)
publish(event_object.method_name, event_object)
end
def listeners
[
EventListener.instance,
WebhookListener.instance,
InstallationWebhookListener.instance, HookListener.instance,
CampaignListener.instance
]
end
end