Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MassTransit Queue Maintenance

Is there anything built into MassTransit that can help manage the queues?

I'm specifically thinking of the error queues. I saw the thread similar to this, but I'm not looking to manage it with a utility, but rather in code.

Scenario:

  • Web client - commands are published as messages with MT to a remote queue on an application server.

  • App server - the commands are consumed and executed. If the command throws during execution, it's placed in the error queue.

  • Web client - end users can view all commands in the error queue. They resolve them one at a time and have them re-published to be executed again.

The first two are easy enough. The third one is where I'm at now. Any suggestions greatly appreciated.

Thanks,
Rob

like image 882
Rob Avatar asked Nov 06 '22 18:11

Rob


1 Answers

This picked up over at http://groups.google.com/group/masstransit-discuss/browse_thread/thread/916fd49e1581fc55

like image 159
Rob Avatar answered Nov 15 '22 11:11

Rob