You are here

6 calls to computing_load() in Drupal Computing 7.2

ComputingQueue::deleteItem in ./computing.queue.inc
Delete a finished item from the queue.
computing_claim in ./computing.module
Return an object and mark it as being processed. Use lock system to make sure status is not changed during the process. Another approach is to use while(TRUE) following the logic from SystemQueue:claimItem().
computing_finish in ./computing.module
When agent finishes a computational task, call this function to persist results back to Drupal.
computing_last_success in ./computing.module
Return the record that has run successfully most recently.
computing_release in ./computing.module
Release the claimed record, assuming that the record is claimed by the
computing_update_field in ./computing.module
Only update and persist the given field. This is supposed to save bandwidth between Drupal and Agent by only updating one field instead of the entire object. It only handles the database properties of the entity, or single value field. Use your own…