mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
22 lines
569 B
Ruby
22 lines
569 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
|
|
[
|
|
CampaignListener.instance,
|
|
CsatSurveyListener.instance,
|
|
EventListener.instance,
|
|
HookListener.instance,
|
|
InstallationWebhookListener.instance,
|
|
WebhookListener.instance
|
|
]
|
|
end
|
|
end
|