I recently posted the following question...
Custom Error Queue Name when using EasyNetQ for RabbitMQ?
... and was provided with a solution on how to use different, application specific Error Queue names when using EasyNetQ, rather than having all unhandled exceptions go into the default error queue (EasyNetQ_Default_Error_Queue).
What I'd now like is to be able to use EasyNetQ.Hosepipe.exe to dump all of the error messages from whichever Error queue I specify, as its default behaviour when doing the following, as per the documentation...
EasyNetQ.Hosepipe.exe err s:localhost o:C:\temp\messages
... is to dump any messages from the EasyNetQ_Default_Error_Queue, into a folder, and in my case, this default error queue will always be empty now.
Previously, when using the default error queue, I could use the above hosepipe err method, then use hosepipe retry...
EasyNetQ.Hosepipe.exe retry s:localhost u:guest p:guest o:C:\temp\messages
... and it would put all of the dumped error messages back into their respective queues for re-processing.