Changes between Version 38 and Version 39 of RemoteJobs


Ignore:
Timestamp:
Oct 21, 2013, 11:10:41 AM (11 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RemoteJobs

    v38 v39  
    11[[PageOutline]]
    2 = Web RPCs for remote job submission =
     2= RPCs for remote job submission =
    33
    44This document describes APIs for remotely submitting,
     
    1212
    1313At 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.
     14At a higher level, BOINC provides client-side bindings in PHP and C++.
    1715
    1816As jobs are completed, their output files are available to the submitting user via HTTP.
     
    219217 error_msg:: (out) an error message if the operation failed
    220218
     219=== estimate_batch() ===
     220
     221Get an estimate of the time to completion of a (potential) batch.
     222
     223{{{
     224int 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
    221236=== submit_jobs() ===
    222237