You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
I would like to know an overview of how background jobs run? Is a new Thread just running?
The text was updated successfully, but these errors were encountered: