Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 524
sym3tri Avatar asked Apr 25 '11 05:04

sym3tri


1 Answers

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...

like image 94
Amith George Avatar answered Nov 15 '22 04:11

Amith George