Top "Scheduled-tasks" questions

A scheduled task is a computer task that is scheduled to happen at a certain time and may repeat.

What's the difference between fixed rate and fixed delay in Spring Scheduled annotation?

I am implementing scheduled tasks using Spring, and I see there are two types of config options for time that …

java spring scheduled-tasks
How can I trigger a Kubernetes Scheduled Job manually?

I've created a Kubernetes Scheduled Job, which runs twice a day according to its schedule. However, I would like to …

scheduled-tasks kubernetes google-kubernetes-engine
Set a Scheduled Task to run when user isn't logged in

I have been using the Powershell Scheduled Task Cmdlets to create a scheduled task on our servers. How do I …

powershell scheduled-tasks powershell-3.0 windows-server-2012
keep command line window open when running scheduled task executing batch file

I would like to have the console window kept open when running a scheduled task which executes a batch file. …

scheduled-tasks batch-processing windows-console
How can I schedule a Macro to run automatically in Access 2007

I'd like to have a macro, called Macro1, for example, run every day at 9 AM. It works great on its …

ms-access macros ms-access-2007 scheduled-tasks
Android Timer schedule vs scheduleAtFixedRate

I'm writing an Android application that records audio every 10 minutes. I am using a Timer to do that. But what …

java android multithreading timer scheduled-tasks
How can I redirect PowerShell output when run from Task Scheduler?

When running a simple PowerShell script from Task Scheduler, I would like to redirect the output to a file. There …

powershell scheduled-tasks line-endings
Windows Task Scheduler - Run only during window of time

I have a task already set up in the Windows Scheduler (on Win Server 2008). It works great but it can …

scheduled-tasks
Using @Scheduled and @EnableScheduling but gives NoSuchBeanDefinitionException

I have followed very simple examples online to set up a cron job in Spring yet I keep getting this …

java cron scheduled-tasks spring-4
How to set scheduler task in spring to run every 1 minutes

now I have this configuration my my scheduler: <task:scheduled ref="task" method="run" cron="0 45 22 * * *" /> when this task …

spring scheduled-tasks