nim-schedules icon indicating copy to clipboard operation
nim-schedules copied to clipboard

A Nim scheduler library that lets you kick off jobs at regular intervals.

Results 4 nim-schedules issues
Sort by recently updated
recently updated
newest added

hii when i try to use nim-schedules with jester it gives the below error **code** ``` import times, asyncdispatch, schedules import jester scheduler mySched: every(seconds=1, id="sync tick"): echo("sync tick, seconds=1...

bug

```nim import schedules, times, os schedules: every(milliseconds=20, id="tick", throttle=30): echo("tick ", now()) sleep(5000) ``` Fails currently with `[DivByZeroDefect]`

enhancement

To quote my program: `/home/retkid/.nimble/pkgs/schedules-0.2.0/schedules/scheduler.nim(269, 6) Warning: 'start' is not GC-safe as it calls 'startNimAsyncContinue' [GcUnsafe2] /home/retkid/.nimble/pkgs/schedules-0.2.0/schedules/scheduler.nim(276, 6) Warning: 'serve' is not GC-safe as it calls 'start' [GcUnsafe2]`

```nim every(minutes=5, id="tick") ``` Currently, there is only an option for a fixed delay. That means, that if a process takes about 4 minutes, but the scheduler executes its tasks...