-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDESCRIPTION
More file actions
49 lines (49 loc) · 1.34 KB
/
DESCRIPTION
File metadata and controls
49 lines (49 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Package: jobqueue
Type: Package
Title: Run Interruptible Code Asynchronously
Version: 1.7.0.9000
Date: 2025-05-23
Authors@R: c(
person(
"Daniel P.", "Smith",
email = "dansmith01@gmail.com",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-2479-2044")),
person(
"Alkek Center for Metagenomics and Microbiome Research",
role = c("cph", "fnd") ))
Description:
Takes an R expression and returns a job object with a $stop() method
which can be called to terminate the background job. Also provides timeouts
and other mechanisms for automatically terminating a background job. The
result of the expression is available synchronously via $result or
asynchronously with callbacks or through the 'promises' package framework.
URL: https://cmmr.github.io/jobqueue/, https://github.com/cmmr/jobqueue
BugReports: https://github.com/cmmr/jobqueue/issues
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
VignetteBuilder: knitr
Config/Needs/website: rmarkdown
Config/testthat/edition: 3
Config/testthat/parallel: false
Depends:
R (>= 4.2.0)
Imports:
cli,
interprocess (>= 1.2.0),
later,
magrittr,
parallelly,
promises,
ps,
R6,
rlang,
utils
Suggests:
glue,
knitr,
rmarkdown,
testthat
Remotes:cmmr/interprocess