We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.
Interface ApplicationConnection.ApplicationStoppedHandler
-
All Superinterfaces:
com.google.gwt.event.shared.EventHandler
Enclosing class:
public static interface ApplicationConnection.ApplicationStoppedHandler extends com.google.gwt.event.shared.EventHandler
A listener for listening to application stopped events. The listener can be added to a
ApplicationConnection
by invokingApplicationConnection#addHandler(GwtEvent.Type, ApplicationStoppedHandler)
Since:
7.1.8
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description void
onApplicationStopped​(ApplicationConnection.ApplicationStoppedEvent event)
Triggered when the
ApplicationConnection
marks a previously running application as stopped by invoking {@link ApplicationConnection#setApplicationRunning(false)}.
-
-
-
Method Detail
-
onApplicationStopped
void onApplicationStopped​(ApplicationConnection.ApplicationStoppedEvent event)
Triggered when the
ApplicationConnection
marks a previously running application as stopped by invoking {@link ApplicationConnection#setApplicationRunning(false)}.Parameters:
event
- the event triggered by theApplicationConnection
-
-