-
public interface QuitResponse
用于响应退出应用程序的请求。
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 void
cancelQuit()
通知外部退出请求者用户已明确取消挂起的退出,并使应用程序保持运行。void
performQuit()
通知外部退出请求者退出将继续,并执行默认值QuitStrategy
。
-
-
-
方法详细信息
-
performQuit
void performQuit()
通知外部退出请求者退出将继续,并执行默认值QuitStrategy
。
-
cancelQuit
void cancelQuit()
Notifies the external quit requester that the user has explicitly canceled the pending quit, and leaves the application running. Note: this will cancel a pending log-out, restart, or shutdown.
-
-