Open
Description
Thanks for this package! It's very easy to use.
I'd like to ask if it's possible to run a job asynchronously, without waiting for the results.
For example, when I run:
job <- Q(fx, x=1:3, n_jobs=1)
I get:
Submitting 1 worker jobs for 3 function calls (ID: 6642) ...
|======================================================================| 100%
Running calculations (1 calls/chunk) ...
| | 0%
|======================================================================| 100%
Master: [19.0s 0.0% CPU]; Worker average: [11.7% CPU]
While this message is being printed, I'm unable to continue executing commands. I have to wait for the submitted job to complete before I can continue working.
Is it possible to let R wait in the background, so I can continue working?