How to do Heroku pending jobs in C # .NET?

I would like to implement something similar to this for our C # .NET web application. http://devcenter.heroku.com/articles/queueing

What pre-existing solutions already exist that will work with .NET?

+6
source share
1 answer

Even I'm looking for something like that. The library closest to DelayedJob seems to be Quartz.net http://quartznet.sourceforge.net/features.html

Obviously, we will not receive some functions from the DJ, for example, add a function name with a delay to delay the execution of the function in the .Net world ...

+2
source

Source: https://habr.com/ru/post/886601/


All Articles