Hi, I have a question about Langohr
according to the RabbitMQ docs, a Channel is not thread safe (https://www.rabbitmq.com/api-guide.html#channel-threads)
but in the example about fanout exchanges, it is used across several threads http://clojurerabbitmq.info/articles/exchanges.html#fanout-exchanges
is this problematic?
my use case is some core async machinery that will ensure that there is no 'concurrent' use of a channel, but the channel might be used on different threads (depending on how core.async schedules the unblocked go blocks)