I am using Mathematica 11
below is an simple example of RunScheduledTask copied from documentation.
n = 0; Dynamic[n]
RunScheduledTask[n++, {1, 3}];
After running it, it will count 3 seconds
Now run
RemoveScheduledTask[ScheduledTasks[]];
you will find the kernel quited!! This can be seen from the fact the variable n becomes blue again. Is this normal?
ScheduledTasks[]contains 1-9 internal tasks related to paclet manager... – Kuba Aug 28 '16 at 12:11nbecomes blue? – matheorem Aug 28 '16 at 12:14ScheduledTasks[]return something else as{ }before and after running your code? – Karsten7 Aug 28 '16 at 14:20