009abc1948
- Unique validations for Inbox members and Team member objects - Move notification processing to Async
22 lines
606 B
Ruby
22 lines
606 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,
|
|
NotificationListener.instance,
|
|
WebhookListener.instance
|
|
]
|
|
end
|
|
end
|