Releases: r-lib/later
later 0.7.4
later 0.7.3
later 0.7.2
later 0.7.1
later 0.6
-
Fix a hang on address sanitized (ASAN) builds of R. Issue #16, PR #17
-
The
run_now()
function now takes atimeoutSecs
argument. If no tasks are ready to run at the timerun_now(timeoutSecs)
is invoked, we will wait up totimeoutSecs
for one to become ready. The default value of0
meansrun_now()
will return immediately if no tasks are ready, which is the same behavior as in previous releases. PR #19 -
The
run_now()
function used to return only when it was unable to find any more tasks that were due. This means that if tasks were being scheduled at an interval faster than the tasks are executed,run_now()
would never return. This release changes that behavior so that a timestamp is taken asrun_now()
begins executing, and only tasks whose timestamps are earlier or equal to it are run. PR #18 -
Fix compilation errors on Solaris. Reported by Brian Ripley. PR #20