public interface QuitHandler
Modifier and Type | Method | Description |
---|---|---|
void |
handleQuitRequestWith |
Invoked when the application is asked to quit. |
void handleQuitRequestWith(QuitEvent e, QuitResponse response)
Implementors must call either QuitResponse.cancelQuit()
, QuitResponse.performQuit()
, or ensure the application terminates. The process (or log-out) requesting this app to quit will be blocked until the QuitResponse
is handled. Apps that require complex UI to shutdown may call the QuitResponse
from any thread. Your app may be asked to quit multiple times before you have responded to the initial request. This handler is called each time a quit is requested, and the same QuitResponse
object is passed until it is handled. Once used, the QuitResponse
cannot be used again to change the decision.
e
- the request to quit this applicationresponse
- the one-shot response object used to cancel or proceed with the quit action
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/java/awt/desktop/QuitHandler.html