Changes between Initial Version and Version 1 of IntermediateUpload


Ignore:
Timestamp:
Apr 24, 2007, 1:07:38 PM (17 years ago)
Author:
Nicolas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IntermediateUpload

    v1 v1  
     1= Intermediate upload =
     2
     3Long-running applications can upload particular output files before the result as a whole is finished. To initiate the upload of an output file, call
     4{{{
     5extern int boinc_upload_file(std::string& name);
     6}}}
     7where 'name' is the logical name of the file. The application cannot modify the file after making this call.
     8
     9To check on the status of a file being uploaded, call
     10{{{
     11extern int boinc_upload_status(std::string& name);
     12}}}
     13This will return zero if the upload of the file is finished successfully.