2019-08-14 09:48:44 +00:00
|
|
|
class AsyncDispatcher < BaseDispatcher
|
|
|
|
def dispatch(event_name, timestamp, data)
|
2020-03-29 13:48:30 +00:00
|
|
|
EventDispatcherJob.perform_later(event_name, timestamp, data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def publish_event(event_name, timestamp, data)
|
2019-08-14 09:48:44 +00:00
|
|
|
event_object = Events::Base.new(event_name, timestamp, data)
|
|
|
|
publish(event_object.method_name, event_object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def listeners
|
2020-09-08 05:54:08 +00:00
|
|
|
[
|
2021-06-29 15:29:41 +00:00
|
|
|
CampaignListener.instance,
|
|
|
|
CsatSurveyListener.instance,
|
|
|
|
HookListener.instance,
|
|
|
|
InstallationWebhookListener.instance,
|
2021-12-21 17:18:01 +00:00
|
|
|
NotificationListener.instance,
|
2022-02-28 12:46:12 +00:00
|
|
|
ReportingEventListener.instance,
|
2022-01-10 07:11:59 +00:00
|
|
|
WebhookListener.instance,
|
|
|
|
AutomationRuleListener.instance
|
2020-08-25 17:34:02 +00:00
|
|
|
]
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|