sendMaster {multicore} | R Documentation |
sendMaster
Sends data from the child to to the master process
sendMaster(what)
what |
data to send to the master process. If what is not
a raw vetor, what will be serialized into a raw vector. Do NOT
send an empty raw vector - it is reserved for internal use. |
Any child process (created by fork
directly or by
parallel
indirectly) can send data to the parent
(master) process. Usually this is used to deliver results from the
parallel child processes to the master process.
returns TRUE
Simon Urbanek