0

问题陈述: -

我有一个 UI 按钮“执行”——它将在不同的线程中依次启动一个大的后台进程。一旦进程开始,按钮文本将切换到“暂停”现在按下“暂停”,我需要暂停线程执行,“恢复”最终会通知继续。

按下按钮“执行”,线程开始,按钮切换到“暂停”,如果我按下暂停,线程被暂停。但我无法恢复正在运行的线程。如果我在恢复按钮按下事件中检查线程状态,我得到 value=0 相当于 NONe。请帮忙。以下是我的代码....

块引用

performBButton.addSelectionListener(new SelectionListener() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            Button btnToggle = (Button) e.getSource();
            MyJob myJob = new MyJob();
            if (btnToggle.getText().equalsIgnoreCase("Perform")) {
                btnToggle.setText("Pause");
                myJob.schedule();

            }
            else if (btnToggle.getText().equals("Pause")) {
                buttonToggle.setText("Resume");
                isPaused=!isPaused;
            }
            else if (btnToggle.getText().equals("Resume")) {
                buttonToggle.setText("Pause");
                isPaused=!isPaused;
                synchronized (myJob) {
                    myJob.notify();
                  }
            }
        }
    });

class MYJob extends Job{
   public void run(IProgessMonito monitor) {
       @Override
       public void run() {
           for (int i=0;i<50000;i++) {
               System.out.println("Iteration "+i +isPaused);
                    synchronized (this) {
                        if (isPaused) {                               
                                wait();
                            } 
                        }
                    }
         Thread.sleep(1000);//I have removed try catch while pasting here

    }
}
}
}
4

1 回答 1

0

通过全局声明 myThread ,将 wait() 更改为 myThread.wait() 实际上解决了我的问题。但它不是正确的方法,任何进一步的建议都会有所帮助......

于 2012-07-01T09:54:16.823 回答