I have a .net core background service that processes messages from a RabbitMq Queue, the messages can grow to thousands depending on the peak period, hence I have to manually instantiate each background service to process the messages one after the other.
My question is how can I use Actor Model to process the messages concurrently as each message arrives in the queue.
Please help.