later icon indicating copy to clipboard operation
later copied to clipboard

Schedule an R function or formula to run after a specified period of time.

Results 43 later issues
Sort by recently updated
recently updated
newest added

Consider rewriting `execCallback` to not invoke R-based callbacks with our own C/C++ code on the call stack. This would remove our invocation of R_TopLevelExec which causes issues with `withCallingHandlers` (like...

Downstream issues: https://github.com/rstudio/shiny/issues/1967#issuecomment-385815733 https://github.com/rstudio/httpuv/issues/130 --- This happens only under certain circumstances, when a native/Rcpp callback function is registered with the native `later::later` API, and an interrupt occurs within the callback....

`options(error=recover)` doesn't work when an error occurs in a callback invoked by later. This probably isn't fixable in later, but later should at least have more helpful error messages and...

R version is 3.6.3 later version is 1.1.0.1 [sdjin87@login Tools]$ R CMD INSTALL later_1.1.0.1.tar.gz * installing to library ‘/mnt/gmi-l1/_90.User_Data/sdjin87/Tools/R-3.6.3/lib64/R/library’ * installing *source* package ‘later’ ... ** package ‘later’ successfully unpacked...

This is a follow-up to #141. When the R process is forked with future, the child process gets a copy of the event loop, but it should be cleared out...

Code running at top-level might cause new output: ```r later::later(~ message("foo"), 1) ``` ``` > foo ``` Or: ```r later::later(~ stop("foo"), 1) ``` ``` > later: exception occurred while executing...

[background](https://github.com/s-u/background) pkg allows to schedule callbacks based on file descriptor (and R connections) activity. Would it be hard to add similar mechanism to the `later` pkg?

I'm facing a similar problem as Issue #115 installing on Termux on a Chromebook. The suggested fixes (edit Makeconf) don't seem to be working when even installing the latest dev...

I recently upgraded from OpenBSD 6.5 to 6.6, which also triggered an upgrade from R 3.5.3 to 3.6.1. Starting with a clean Rlibs, I am unable to install (compile) later,...

Currently, the `later::later()` C function can be used by a background thread to schedule code to run on the main R thread. However, we don't have a way for the...