I'm trying to create a project with net core 2.0. Users can create reminders in
distant future in my system (the reminder call weapi method in distant future). Reminders save in database (I choose the database now). Nuget-package Quartz.NET can create reminders in future. But what if server will be restarted?
The main idea is : in startup.cs recreate reminders in Quartz.NET. I don't like this idea, because maybe there will be a lot of reminders. Have you got any ideas about how can I do it?
Long time scheduler in C#
862 views Asked by Galina Melnik At
1
There are 1 answers
Related Questions in C#
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in SCHEDULED-TASKS
- How to schedule the execution of broadcast tasks from a queue of to be broadcasted data with a one second delay in between each broadcast invocation?
- Is there a way to pass Today's date as a command line argument to Excel from a Windows Task Scheduler Job
- Building a service which sends emails everyday to the user at a particular time. (NOT RUNNING)
- Assign Dynamic values in Annotation
- Create a task in mybb to automatically recount and rebuild forums and threads every 1 minute
- Creating a ScheduledTask in PowerShell to run when any network is available
- I want to extract data from website and refresh that data in 15 days , and whenever website get updated dataset should be updated too. How approach it
- How to create a stored procedure that creates a table at the end of the month, but the table name gets automatically generated based on system date
- Scheduled task that doesn't start
- Toggle Dark/Light Mode in Windows 11 automatically by time of day (without modifying or changing theme!)
- Django-q2 schedule task hook on class function
- Spring scheduled - can I join fixed delay with cron
- Mac LaunchAgent with full disk access and caffeinate
- Airflow Parallel DAG runs
- Netsuite Scheduled script stuck on pending status
Related Questions in QUARTZ.NET
- Issue with AdoNetAppender Configuration in Log4net and ThreadContext Usage
- How can I suppress some of the "DBG" and "INF" messages output by the dotnet run command?
- Quartz scheduler not calling the Job class
- MediatR notification handler dispose behaviour
- C# Async-Await throwing AggregateException on Task.WaitAll
- Quartz.NET seems to not work correctly with days of week
- What is impact of increasing misfireThresold value?
- Can we have a single scheduler with multiple databases?
- I tried installing crazyflie client in my macos. I am having the following error if I run cfclient
- How to smoothly migrate the quartz tables to different sql database?
- Quartz.net loses default settings when publishing with Trim unused code
- Quartz.net with .net 6.0 - AdoJobStore using SQL Server not creating job records
- Azure WebJobs vs Quartz.NET
- .NET 6 and Quartz.net how to use Dependency Injection for dbcontext?
- Winservice C# and Quartz.net v3.7 - Error "ThreadPool type 'Quartz.Simpl.DefaultThreadPool' props could not be configured"
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Quatrz.net allows you to choose JobStore, so you can restore all your jobs after application restart. Another alternative is to use Hangfire which provides a lot of persistence options out of the box.