handler_ntfy | R Documentation |
A progression handler for ntfy_send()
of the ntfy package,
which sends notifications via the https://ntfy.sh framework.
handler_ntfy(
intrusiveness = getOption("progressr.intrusiveness.ntfy", 5),
target = "gui",
...,
title = "Progress update from R"
)
intrusiveness |
(numeric) A non-negative scalar on how intrusive (disruptive) the reporter to the user. |
target |
(character vector) Specifies where progression updates are rendered. |
title |
title of notification. See https://docs.ntfy.sh/publish/#message-title |
... |
Additional arguments passed to |
This progression handler requires the ntfy package, which is only available from https://github.com/jonocarroll/ntfy.
pkg <- "ntfy"
if (requireNamespace(pkg, quietly = TRUE)) {
## We need to specify a ntfy.sh topic that progress messages
## should be sent to. See help("ntfy_topic", package = "ntfy")
## for details
Sys.setenv("NTFY_TOPIC", "R-my-secret-topic")
handlers("ntfy")
with_progress({ y <- slow_sum(1:10) })
print(y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.