WLJS LogoWLJS Notebook

TaskResume

TaskResume[task] resumes execution of the specified task.

This function continues a task that was previously suspended with TaskSuspend.

Examples

task = SessionSubmit[ScheduledTask[Print["tick"], 1]];
TaskSuspend[task];
TaskResume[task]
(* Resume a suspended scheduled task *)
TaskResume[$ScheduledTask]
TaskResume[TaskObject[...]]

*See the official Wolfram Language Reference for more details.

On this page