Questions tagged [scheduled-tasks]
A Scheduled Task is a task that is scheduled to execute at a certain time (as the name is self-explanatory).
76 questions
4 votes
1 answer
182 views
API having flow - normal flow along with background poller(it also involves events which is not shown here)
We have an API in which we call external service with a tracking id.This first part of the API workflow makes an entry to the DB as SUBMITTED after the call to first external API say /E1 finishes and ...
2 votes
1 answer
157 views
Simple priority task scheduler implementation
My project I am working on requires the following functionality for the processed messages: each message has a priority messages with higher priorities should have precedence over the ones with lower ...
6 votes
3 answers
1k views
A priority based timer using priority queue
I am trying to implement a priority-based timer where certain events are fired out based on their expiry and the priority. So if there are 3 timers with the following expiry time and priorities Timers ...
2 votes
1 answer
85 views
Detect discontinuities in Windows clock in Java
Please review the code below, which detects discontinuities in Windows system clock in long-running programs. ...
6 votes
2 answers
3k views
Simple async task scheduler
I've written a .NET Core console application to monitor the operation of a sensor network and I'd like a review of the task scheduling performed by the main program loop. There are three tasks that ...
1 vote
2 answers
102 views
Schedule Checker
How could I reduce this schedule checker? There are too many conditions. This code is supposed to make sure we're not booking events for employees that are already booked in a specified timeframe. <...
2 votes
0 answers
66 views
Task scheduling
A simple design for task scheduling using the following classes/interfaces. ...
3 votes
1 answer
3k views
Timer for scheduling tasks in C++11
I have made a simple Timer class used for scheduling tasks. While defining the interface, I have followed the interface of a ...