ScheduledTasks[]
returns a list of ScheduledTaskObject and CloudObject expressions that represent current tasks.
ScheduledTasks
ScheduledTasks[]
returns a list of ScheduledTaskObject and CloudObject expressions that represent current tasks.
Details
- Tasks are created by functions such as CreateScheduledTask, RunScheduledTask, and ScheduledTask.
- ScheduledTasks yields all scheduled tasks, including scheduled tasks in the cloud. By default, it does not list tasks associated with document generators.
Examples
open all close allBasic Examples (2)
Display a list of currently set tasks:
ScheduledTasks[]t = CreateScheduledTask[1]ScheduledTasks[]RemoveScheduledTask[t]ScheduledTasks[]RemoveScheduledTask[ScheduledTasks[]]Options (1)
IncludeGeneratorTasks (1)
By default, ScheduledTasks will list local tasks and cloud tasks unaffiliated with document generators. Use the IncludeGeneratorTasks option to control inclusion.
co = CloudDeploy[DocumentGenerator[File["ExampleData/BasicTemplate.nb"], <|"author" :> $CloudUserID|>, "Daily"]]Retrieve metadata for the task associated with the generator:
generatorTask = DocumentGeneratorInformation[co, "Task"]The task is not present in the default listing:
MemberQ[ScheduledTasks[], CloudObject[$CloudBase <> "objects/" <> generatorTask[[1, "UUID"]]]]The task is present in the augmented listing:
MemberQ[ScheduledTasks[IncludeGeneratorTasks -> True], CloudObject[$CloudBase <> "objects/" <> generatorTask[[1, "UUID"]]]]RemoveScheduledTask[co]Tech Notes
Text
Wolfram Research (2010), ScheduledTasks, Wolfram Language function, https://reference.wolfram.com/language/ref/ScheduledTasks.html (updated 2014).
CMS
Wolfram Language. 2010. "ScheduledTasks." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2014. https://reference.wolfram.com/language/ref/ScheduledTasks.html.
APA
Wolfram Language. (2010). ScheduledTasks. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/ScheduledTasks.html
BibTeX
@misc{reference.wolfram_2026_scheduledtasks, author="Wolfram Research", title="{ScheduledTasks}", year="2014", howpublished="\url{https://reference.wolfram.com/language/ref/ScheduledTasks.html}", note=[Accessed: 15-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_scheduledtasks, organization={Wolfram Research}, title={ScheduledTasks}, year={2014}, url={https://reference.wolfram.com/language/ref/ScheduledTasks.html}, note=[Accessed: 15-June-2026]}