Top "Scheduling" questions

In computer science, scheduling is the method by which threads, processes or data flows are given access to system resource.

Spring Scheduler does not work

I have a problem with Spring's annotation based task scheduler - I can't get it working, I don't see any …

spring spring-mvc scheduling
Launch an App on Samsung Smart TV startup

I want to automatically launch an app on TV startup. i.e. when the user power on the TV, TV …

scheduling samsung-smart-tv smart-tv
Round Robin Scheduling Program

I have been working on a Round Robin Scheduling Program. My inputs are: Process Arrival Time Burst Time 1 0 4 2 2 2 3 4 3 4 6 5 5 7 1 Time Slice …

c scheduling round-robin
Implementing round robin scheduling algorithm in Java

After hours of braining I've finally crashed and have come to result that I have no clue how to implement …

java algorithm scheduling round-robin
ScheduledExecutorService Exception handling

I use ScheduledExecutorService to execute a method periodically. p-code: ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); ScheduledFuture<?> handle = scheduler.scheduleWithFixedDelay(new …

java multithreading scheduling
Crontab - simple echo not running

I've got such situation: I want to schedule a job with crontab on a linux server. I'm not super-user, so …

linux cron scheduling
How to stop a task in ScheduledThreadPoolExecutor once I think it's completed

I have a ScheduledThreadPoolExecutor with which I schedule a task to run at a fixed rate. I want the task …

java scheduled-tasks scheduling scheduler
How Linux handles threads and process scheduling

I'm trying to understand how Linux handles process scheduling and thread scheduling. I read that Linux can schedule both processes …

linux multithreading process scheduling
Run once a day in C#

Is there any clever method out there to make my executeEveryDayMethod() execute once a day, without having to involve the …

c# scheduling
Provide time zone to Spring @Scheduled?

How can I configure the time zone for a Spring based @Scheduled cron job? Background: I have a job that …

java spring cron timezone scheduling