0

初めてwaitおよびnotify()メソッドを使用していますが、この方法で試しました。

サンプルコード

public class Tester
{
static boolean closing == false;
static int n;
DateTime dt = new DateTime();
int getMin = dt.getMinuteOfDay(); //minute of the day
int tempMin = dt.getMinuteOfDay()+5;// minute of the day + 5 minutes

public static void setClosing(boolean b)
{
    closing = b;        
}

public static int getN()
{
    return n;
}

class notifier extends Thread 
{
    public void run()
    {
        synchronized(this)
        {
            while(getMin == tempMin || closing == true)
            {
                notify();
            }
        }
    }
}

public void starter() throws InterruptedException 
{        
    notifier nn = new notifier();
    while(n==1)
    {
        notify.start();
        if(closing == false)
        {
            synchronized(notify)
            {
                nn.wait();
                mailreader();
                getMin = getMin+5;
                tempMin = tempMin+5;
            }
        }
        else
        {
            n=2;
        }
    }
}
}

メインクラス

public class Tester2 extends WindowAdapter
{
public Tester2()
{        
    frame = new JFrame();
    frame.addWindowListener(this);
    frame.setVisible(true);
    Tester t = new Tester();
    t.starter();
}

@Override
public void windowClosing(WindowEvent e)
{
    Tester.setClosing(true);
    while(Tester.getN() != 2)
    {
        //wait
    }
    frame.dispose();        
}

public static void main(String args[])
{
    Tester2 t = new Tester2();        
}    
}

5 分ごとにmailreader()メソッドを呼び出して何らかのタスクを実行していますが、

ユーザーがJframeを閉じる と、メインクラスからクロージングがtrueに設定されます。通知クラスのwhileループから抜け出したいです。

私がここでやろうとしているのは、ユーザーが JFrame を閉じたときに、mailreader() を途中で停止して終了させたくないということです。代わりに、メソッドが終了するまで JFrame を待機させてから閉じます。待機モードです(notifierクラス) 抜けて終了したいです

4

1 に答える 1