I was thinking about trying to use RSB in my MVC site to handle long running tasks and was wondering if anyone else is doing something similar.
Basically I want to get away from a polling mechanism where I save some data and then have a separate process like a console app running every five minuets or so to check on that data and do some work if it has not already been done.
I want to send a "ProcessData" message after said data is persisted. I am not concerned about replies, so it would be a oneway bus.
A big concern I have is what happens to the process if IIS starts shutting down? Would it be better to spawn a new Task handle the work? (I would still be worried about IIS shutting down).
Joe