-
public interface QuitHandler
执行者确定是否应该继续或取消退出此应用程序的请求。
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 void
handleQuitRequestWith(QuitEvent e, QuitResponse response)
当应用程序被要求退出时调用。
-
-
-
方法详细信息
-
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.
-
-