Skip to content

Commit 08295e8

Browse files
future.callr::callr relays 'progression' conditions in a near-live fashion in future.callr (>= 0.9.0)
1 parent 7e5f551 commit 08295e8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: progressr
2-
Version: 0.15.1-9001
2+
Version: 0.15.1-9002
33
Title: An Inclusive, Unifying API for Progress Updates
44
Description: A minimal, unifying API for scripts and packages to report progress updates from anywhere including when using parallel processing. The package is designed such that the developer can to focus on what progress should be reported on without having to worry about how to present it. The end user has full control of how, where, and when to render these progress updates, e.g. in the terminal using utils::txtProgressBar(), cli::cli_progress_bar(), in a graphical user interface using utils::winProgressBar(), tcltk::tkProgressBar() or shiny::withProgress(), via the speakers using beepr::beep(), or on a file system via the size of a file. Anyone can add additional, customized, progression handlers. The 'progressr' package uses R's condition framework for signaling progress updated. Because of this, progress can be reported from almost anywhere in R, e.g. from classical for and while loops, from map-reduce API:s like the lapply() family of functions, 'purrr', 'plyr', and 'foreach'. It will also work with parallel processing via the 'future' framework, e.g. future.apply::future_lapply(), furrr::future_map(), and 'foreach' with 'doFuture'. The package is compatible with Shiny applications.
55
Authors@R: c(person("Henrik", "Bengtsson",

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ vignettes/progressr-intro.md: incl/OVERVIEW.md vignettes/incl/clean.css
66
cat $< >> $@
77
sed -i 's/vignettes\///g' $@
88

9-
vigns: vignettes/progressr-intro.md
9+
vignettes: vignettes/progressr-intro.md
1010

1111
spelling:
1212
$(R_SCRIPT) -e "spelling::spell_check_package()"

incl/OVERVIEW.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -764,12 +764,14 @@ requires **plyr** (>= 1.8.7).
764764

765765
### Near-live versus buffered progress updates with futures
766766

767-
As of November 2020, there are four types of **future** backends that are known(*) to provide near-live progress updates:
767+
As of April 2025, there are five types of **future** backends that are
768+
known(*) to provide near-live progress updates:
768769

769770
1. `sequential`,
770771
2. `multicore`,
771772
3. `multisession`, and
772773
4. `cluster` (local and remote)
774+
4. `future.callr::callr`
773775

774776
Here "near-live" means that the progress handlers will report on
775777
progress almost immediately when the progress is signaled on the

vignettes/progressr-intro.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -775,12 +775,14 @@ requires **plyr** (>= 1.8.7).
775775

776776
### Near-live versus buffered progress updates with futures
777777

778-
As of November 2020, there are four types of **future** backends that are known(*) to provide near-live progress updates:
778+
As of April 2025, there are five types of **future** backends that are
779+
known(*) to provide near-live progress updates:
779780

780781
1. `sequential`,
781782
2. `multicore`,
782783
3. `multisession`, and
783784
4. `cluster` (local and remote)
785+
4. `future.callr::callr`
784786

785787
Here "near-live" means that the progress handlers will report on
786788
progress almost immediately when the progress is signaled on the

0 commit comments

Comments
 (0)