98e2a9b8b5
- Builder for creating Campaign conversations - Widget endpoint to fetch the campaigns
19 lines
528 B
Ruby
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
|