Unsubscribes streams from the
named `broadcasting`.
# File actioncable/lib/action_cable/channel/streams.rb, line 123
def stop_stream_from(broadcasting)
callback = streams.delete(broadcasting)
if callback
pubsub.unsubscribe(broadcasting, callback)
logger.info "#{self.class.name} stopped streaming from #{broadcasting}"
end
end