2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-09-05 07:22:15 -04:00
|
|
|
module MessageBus::DiagnosticsHelper
|
|
|
|
def publish(channel, data, opts = nil)
|
|
|
|
id = super(channel, data, opts)
|
2017-10-01 23:34:57 -04:00
|
|
|
if @tracking && (@channel.nil? || @channel == channel)
|
2013-09-05 07:22:15 -04:00
|
|
|
m = MessageBus::Message.new(-1, id, channel, data)
|
|
|
|
m.user_ids = opts[:user_ids] if opts
|
|
|
|
m.group_ids = opts[:group_ids] if opts
|
|
|
|
@tracking << m
|
|
|
|
end
|
|
|
|
id
|
|
|
|
end
|
|
|
|
|
2017-10-01 23:34:57 -04:00
|
|
|
def track_publish(channel = nil)
|
|
|
|
@channel = channel
|
2013-09-05 07:22:15 -04:00
|
|
|
@tracking = tracking = []
|
|
|
|
yield
|
|
|
|
tracking
|
2017-08-21 09:29:14 -04:00
|
|
|
ensure
|
|
|
|
@tracking = nil
|
2013-09-05 07:22:15 -04:00
|
|
|
end
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2013-09-05 07:22:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
module MessageBus
|
|
|
|
extend MessageBus::DiagnosticsHelper
|
|
|
|
end
|