Who calls accept()?
deostroll opened this issue · 3 comments
deostroll commented
I am trying to determine if the following function is called multiple times, or, only once, in an eventloop tick.
Line 289 in 64d1c1e
I assume this is the function which processes messages and finally ends up calling the callback fn passed to the channel.consume() api.
cressie176 commented
I believe It is called once per frame received from the RabbitMQ broker. Multiple frames can be received within one tick of the event loop
deostroll commented
So there is a possibility for the deliver event to be fired multiple times within an eventloop tick?
cressie176 commented
Yes