I am creating a class for Producer
which pushes messages to RabbitMQ
. It makes use of pika
module
.
I would like to create a handler so that I have control over the number of connections that interact with Rabbit MQ.
Is there a way we can add this to app_context
and later refer to that or is there way that we use init_app
to define this handler.
Any code snippet would be of really good help.