Skip to content

Commit e458774

Browse files
Make package work also for R (< 4.4.0)
1 parent 5acba0a commit e458774

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future
2-
Version: 1.49.0-9031
2+
Version: 1.49.0-9032
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Depends:
55
R (>= 3.2.0)

NAMESPACE

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,6 @@ importFrom(listenv,parse_env_subset)
225225
importFrom(parallel,clusterCall)
226226
importFrom(parallel,nextRNGStream)
227227
importFrom(parallel,nextRNGSubStream)
228-
importFrom(parallel,recvData)
229-
importFrom(parallel,sendData)
230228
importFrom(parallel,stopCluster)
231229
importFrom(parallelly,as.cluster)
232230
importFrom(parallelly,availableCores)

R/makeClusterFuture.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,9 @@ makeClusterFuture <- function(...) {
101101
}
102102

103103

104-
#' @importFrom parallel sendData
105104
#' @importFrom utils capture.output str
106105
#' @importFrom future future
107-
#' @export
106+
#' @exportS3Method sendData FutureNode
108107
sendData.FutureNode <- function(node, data) {
109108
## sendCall(con, fcn, args, return = TRUE, tag = NULL)
110109
## postNode(con, "EXEC", value = list(fun = fun, args = args, return = return, tag = tag), tag = NULL)
@@ -198,9 +197,8 @@ sendData.FutureNode <- function(node, data) {
198197
}
199198

200199

201-
#' @importFrom parallel recvData
202200
#' @importFrom future value
203-
#' @export
201+
#' @exportS3Method recvData FutureNode
204202
recvData.FutureNode <- function(node) {
205203
debug <- isTRUE(getOption("parallel.future.debug"))
206204
if (debug) {

0 commit comments

Comments
 (0)