> On Dec 16, 2013, at 8:33 AM, "Alan D. Cabrera" <l...@toolazydogs.com> wrote: > > I'm writing a plugin that performs a recurrent task, i.e. watches a file > system for changes. What's the best way to do this in a ATS plugin?
Create a continuation and schedule it to run every so often on a TASK thread . You can alternatively have the continuation scheduled for a single run, and have it reschedule itself. That's useful if the interval between invocations is not fixed. -- Leif > > > Regards, > Alan >