Module  java.desktop
软件包  java.awt.desktop

Interface QuitHandler

    • 方法详细信息

      • handleQuitRequestWith

        void handleQuitRequestWith​(QuitEvent e,
                                   QuitResponse response)
        当应用程序被要求退出时调用。 实现者必须调用要么QuitResponse.cancelQuit()QuitResponse.performQuit() ,或确保应用程序终止。 请求此应用程序退出的进程(或注销)将被阻止,直到处理QuitResponse 需要复杂UI关闭的应用程序可以从任何线程调用QuitResponse 在您回复初始请求之前,您的应用可能会被要求退出多次。 该处理器将被调用每次退出请求,并同QuitResponse对象传递,直到它被处理。 一旦使用, QuitResponse不能再用来改变决定。
        参数
        e - 退出此应用程序的请求。
        response - the one-shot response object used to cancel or proceed with the quit action.