96da27f1f6
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
10 lines
325 B
Ruby
10 lines
325 B
Ruby
class SyncDispatcher < BaseDispatcher
|
|
def dispatch(event_name, timestamp, data)
|
|
event_object = Events::Base.new(event_name, timestamp, data)
|
|
publish(event_object.method_name, event_object)
|
|
end
|
|
|
|
def listeners
|
|
[ActionCableListener.instance, AgentBotListener.instance, NotificationListener.instance]
|
|
end
|
|
end
|