Recurring Job for each authenticated user

Hello everyone!

I’ve just set up Hangfire into my ASP.NET Core solution and I have a question regarding the recurring jobs.

I want to trigger a method daily which will check for new matches for an authenticated user. The method will be always the same but the parameter will change (according to the user). I’m afraid that the method will get updated and it won’t trigger for every user that will fire the code on its execution (the code is on index page).

Can someone explain me what is the behavior for this situation? I want to make sure that the trigger will be fired for each user that reached the index page for the first time in order to apply the recurring rule (daily).

Thanks in advance :slight_smile: