New in Wolfram Mathematica 7: Built-in Parallel Computing  previous | next 
Automatically Monitor the Progress of Concurrent Computations
You can submit evaluations to the parallel processing queue with ParallelSubmit. You can harvest the results with WaitAll and WaitNext. The EvaluationObject that is returned by ParallelSubmit automatically displays the state of the evaluation, allowing you to monitor its progress.
In[1]:=

Click for copyable input
Table[ParallelSubmit[{i}, FactorInteger[2^i + 1]], {i, 200, 210}]
Out[1]=



In[2]:=

Click for copyable input
Table[ParallelSubmit[{i}, FactorInteger[2^i + 1]], {i, 200, 210}];

WaitAll[%]
Out[2]=