Quote:
Originally Posted by meme
Out of curiousity, I'm currently calling the get_device_information immediately after my create job, but should I be calling it in my completed job function - since I don't need it to run until after my job completes anyway? I couldn't get this to work at first and so just moved it up to the main function where it worked and I left it. (I just use the completed function to present a dialog to the user to show them the report and nothing depends on them closing the dialog).
|
Since your job doesn't spawn further jobs, then there isn't any difference as far as you are concerned. The job will run after yours. However, any jobs spawned by kiwidude's job will probably run after both of these, which is probably wrong and is the reason for the discussion that Kovid & I are having.