MassTransit Queue Service

Is there anything built into MassTransit that can help queuing?

I specifically think about queues of errors. I saw a stream similar to this one, but I don’t want to control it using a utility, but rather in the code.

Scenario:

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

  • Application Server - commands are used and executed. If a command is run at run time, it is placed in the error queue.

  • Web client - end users can view all commands in the error queue. They allow them one at a time and publish again for republishing.

The first two are quite light. The third is where I am now. Any suggestions were greatly appreciated.

Thanks
Rob

+5
source share

All Articles