Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How is are Background Jobs implemented with this library? #297

Open
justinjalandoniiwest opened this issue Feb 9, 2021 · 2 comments
Open

Comments

@justinjalandoniiwest
Copy link

I would like to know an overview of how background jobs run? Is a new Thread just running?

@ghost
Copy link

ghost commented Oct 7, 2021

Is a new Thread just running?

Yes, that's correct. But there's more to it, it's not running inside a single long live thread. The scheduler basically creates a new thread to run your job every time according to your schedule. So you better read about Reentrancy to prevent parallel with a previously triggered execution of the same schedule. This library requires knowledge in multi-threading, if you know this subject you'll find this library very powerful. I've used this library in so many real-world projects that I delivered to customers.

@AraHaan
Copy link

AraHaan commented Mar 20, 2023

@dahanj95 does that include ASP.NET MVC projects using OWIN?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants