Changes between Version 8 and Version 9 of BossaReference


Ignore:
Timestamp:
Jul 18, 2008, 9:30:17 PM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BossaReference

    v8 v9  
    5959priority for that user's level.
    6060
     61== API for job creation ==
     62
     63{{{
     64int bossa_app_lookup(string $app_name)
     65}}}
     66Returns the ID of the application with the given short name.
     67
     68{{{
     69int bossa_batch_create(int $appid, string name, bool $calibration)
     70}}}
     71Creates a batch with the given name and returns its ID.
     72
     73{{{
     74bool bossa_job_create(int $appid, int $batchid, mixed $app_data, bool $calibration)
     75}}}
     76Creates a job with the given app data.
     77Initial priorities are one.
     78Returns true on success.