Search code examples
.netwindowsqueuemsmqdelayed-job

How to do Heroku-like Delayed Jobs in C#.NET?


Would like to implement something similar to this for our C#.NET Web App. http://devcenter.heroku.com/articles/queueing

What pre-existing solutions are already out there that will work with .NET?


Solution

  • Even I am looking for something similar. The library closest to DelayedJob seems to be Quartz.net http://quartznet.sourceforge.net/features.html

    Obviously we wont get certain features from DJ, like prepend a function name with delayed to delay the execution of the function, in the .Net world...