Changes between Version 38 and Version 39 of RemoteJobs
- Timestamp:
- Oct 21, 2013, 11:10:41 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v38 v39 1 1 [[PageOutline]] 2 = WebRPCs for remote job submission =2 = RPCs for remote job submission = 3 3 4 4 This document describes APIs for remotely submitting, … … 12 12 13 13 At the bottom level, the interface uses XML over HTTP. 14 At a higher level, 15 BOINC provides client-side bindings in PHP and C++; 16 these are somewhat different. 14 At a higher level, BOINC provides client-side bindings in PHP and C++. 17 15 18 16 As jobs are completed, their output files are available to the submitting user via HTTP. … … 219 217 error_msg:: (out) an error message if the operation failed 220 218 219 === estimate_batch() === 220 221 Get an estimate of the time to completion of a (potential) batch. 222 223 {{{ 224 int estimate_batch( 225 const char* project_url, 226 const char* authenticator, 227 char app_name[256], 228 vector<JOB> jobs, 229 double est_makespan, 230 string& error_msg 231 ); 232 }}} 233 jobs :: description of jobs; same as for '''submit_jobs()''' (see below). 234 est_makespan :: the estimated makespan (time to completion). 235 221 236 === submit_jobs() === 222 237