Changes between Version 26 and Version 27 of RemoteJobs
- Timestamp:
- Aug 30, 2012, 8:57:42 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v26 v27 90 90 } 91 91 92 list($ e, $errmsg) = boinc_estimate_batch($req);92 list($batch_id, $errmsg) = boinc_submit_batch($req); 93 93 if ($errmsg) { 94 94 echo "Error: $errmsg\n"; 95 95 } else { 96 echo " The batch will take about $e seconds to complete\n";96 echo "Batch ID: $batch_id\n"; 97 97 } 98 98 }}}