Nothing
#' @inheritParams ClusterFuture-class
#' @inheritParams Future-class
#'
#' @return
#' `MultisessionFuture()` returns an object of class `MultisessionFuture`,
#' which inherits from `ClusterFuture`.
#'
#' @section Usage:
#' To use 'multisession' futures, use `plan(multisession, ...)`, cf. [multisession].
#'
#' @export
#' @rdname ClusterFuture-class
MultisessionFuture <- function(expr = NULL, substitute = TRUE, envir = parent.frame(), persistent = FALSE, workers = NULL, ...) {
if (substitute) expr <- substitute(expr)
## Defunct argument 'persistent'?
if (!is.null(list(...)$persistent)) {
.Defunct(msg = "Use of argument 'persistent' with multisession futures is defunct.", package = .packageName)
}
future <- ClusterFuture(expr = expr, substitute = FALSE, envir = envir, workers = workers, ...)
future <- structure(future, class = c("MultisessionFuture", class(future)))
future
}
#' @export
getExpression.MultisessionFuture <- function(future, mc.cores = 1L, ...) {
## NOTE: In order to override the default 'mc.cores = NULL' of
## getExpression.Future(), we have to pass it as a named argument to
## NextMethod(). If not done, that is, if we just call NextMethod(), then
## 'mc.cores' will resolve to the default (= NULL). If we don't name the
## argument - NextMethod("getExpression", mc.cores) - then the default
## will still be NULL.
## The problem with using NextMethod(mc.cores = mc.cores) is that if we
## call getExpression(f, 2L) instead of getExpression(f, mc.cores = 2L),
## then the call will become getExpression.Future(f, 2L, mc.cores = 2L).
## I don't think there is a solution here, except to enforce that all
## arguments to a method that uses NextMethod() must be named.
## See also https://github.com/HenrikBengtsson/Wishlist-for-R/issues/44
## /HB 2018-06-13
## Assert that no arguments but the first is passed by position
assert_no_positional_args_but_first()
NextMethod(mc.cores = mc.cores)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.