parallelMap (version 1.4)

parallelExport: Export R objects for parallelization.

Description

Makes sure that the objects are exported to slave process so that they can be used in a job function which is later run with parallelMap.

Usage

parallelExport(..., objnames, master = TRUE, level = NA_character_,
  show.info = NA)

Arguments

...

[character] Names of objects to export.

objnames

[character(1)] Names of objects to export. Alternative way to pass arguments.

master

[logical(1)] Really export to package environment on master for local and multicore mode? If you do not do this your objects might not get exported for the mapping function call. Only disable when you are really sure. Default is TRUE.

level

[character(1)] If a (non-missing) level is specified in parallelStart, the function only exports if the level specified here matches. See parallelMap. Useful if this function is used in a package. Default is NA.

show.info

[logical(1)] Verbose output on console? Can be used to override setting from options / parallelStart. Default is NA which means no overriding.

Value

Nothing.