Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Description
Causes R to block on an existing distributed job until completion.
Usage
rxWaitForJob(jobInfo)
Arguments
jobInfo
A jobInfo object.
Details
This function essentially changes a non-blocking distributed computing job to
a blocking job. You can change a blocking job to non-blocking on Windows by
pressing the Esc key, then using rxGetJobStatus and rxGetJobResults
on the object rxgLastPendingJob. This function does not, however, modify
the compute context.
Author(s)
Microsoft Corporation Microsoft Technical Support
Examples
## Not run:
rxWaitForJob( rxgLastPendingJob )
rxWaitForJob( myNonWaitingJob )
## End(Not run)