I wish to Show progress of a long running operation(process) in UI so that user can understand the status of the background job. This is the way i implemented and i feel like the code is not apt and matured. Below is my code

dialog.run(true,false, new IRunnableWithProgress() {
    @Override
    public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
        monitor.beginTask("Main process", 10);
        for (int i = 0; i < 10; i++) {
            if (monitor.isCanceled()) return;
            monitor.subTask("Status  message");
            sleep(1000);
            // worked increates the monitor, the values is added to the existing ones
            monitor.worked(1);
            if(i == 3) {
                sleep(3000);
                callMe();//calling a long running function 
            }
            if(i == 9) {
                monitor.subTask("finishing setup..... please wait ");
                sleep(2000);
            }
        }
        monitor.done();
    }
});

Note: There is a sleep method somewhere in the code

here at i == 3 an operation/function is called that takes a minimum of 5 minutes, post execution of the function the progress continues.

I don't want the progress to be stopped while executing the function(long running operation) rather progress must be shown even while executing it.

can someone show the correct programming practices in showing progress

link|improve this question

74% accept rate
What do you mean by "the progress to be stopped ..."? Stopped by the user by pressing the button next to the progress bar? – True Soft Aug 26 '11 at 13:52
I assume there are no feedback during the 5 minute operation? – Tonny Madsen Aug 26 '11 at 14:12
@True "the progress to be stopped" mean that some progress should be shown unlike keeping idle(no movement in progress) for 5minutes or else some message must be shown yes you are right there is no feedback during 5 minute operation in the above scenario but i want to view some messages of the task – raghav Aug 26 '11 at 14:39
true and tony can you guide me – raghav Aug 27 '11 at 12:13
2  
Be aware that when you're off calling that other method the progress won't really be updating. It'll be stuck with the same status message and ignoring any cancel requests the entire 5 minutes. – nitind Aug 28 '11 at 12:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.