Commit graph

3 commits

Author SHA1 Message Date
mef
f55484ead5 (sysutils/R-later) Updated to 1.0.0
## later 1.0.0

* Added private event loops: these are event loops that can be run
  independently from the global event loop. These are useful when you
  have code that schedules callbacks with `later()`, and you want to
  call `run_now()` block and wait for those callbacks to execute
  before continuing. Without private event loops, if you call
  `run_now()` to wait until a particular callback has finished, you
  might inadvertantly run other callbacks that were scheduled by other
  code. With private event loops, you can create a private loop,
  schedule a callback on it, then call `run_now()` on that loop until
  it executes, all without interfering with the global
  loop. ([#84](https://github.com/r-lib/later/pull/84))
2019-12-31 12:08:15 +00:00
maya
e4e10c979d R-later: add missing dependency R-BH. Fixes build.
From Benjamin Lorenz in PR pkg/54517
2019-09-07 08:38:27 +00:00
brook
8c6403a546 R-later: initial commit
Executes arbitrary R or C functions some time after the current time,
after the R execution stack has emptied.
2019-08-09 20:24:22 +00:00