clojurewerkz

stijn 2016-05-24T10:06:18.000007Z

Hi, I have a question about Langohr

stijn 2016-05-24T10:07:10.000008Z

according to the RabbitMQ docs, a Channel is not thread safe (https://www.rabbitmq.com/api-guide.html#channel-threads)

stijn 2016-05-24T10:08:19.000009Z

but in the example about fanout exchanges, it is used across several threads http://clojurerabbitmq.info/articles/exchanges.html#fanout-exchanges

stijn 2016-05-24T10:08:40.000011Z

is this problematic?

stijn 2016-05-24T10:09:42.000012Z

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)