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()
.
parallelExport(
...,
objnames,
master = TRUE,
level = NA_character_,
show.info = NA
)
character
Names of objects to export.
(character(1)
)
Names of objects to export.
Alternative way to pass arguments.
(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
.
(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
.
(logical(1)
)
Verbose output on console?
Can be used to override setting from options / parallelStart()
.
Default is NA which means no overriding.
Nothing.