Package com.vaadin.server
Interface SessionDestroyListener
-
- All Superinterfaces:
Serializable
public interface SessionDestroyListener extends Serializable
A listener that gets notified when a Vaadin service session is no longer used.- Since:
- 7.0.0
- Author:
- Vaadin Ltd
- See Also:
VaadinService.addSessionDestroyListener(SessionDestroyListener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
sessionDestroy(SessionDestroyEvent event)
Called when a Vaadin service session is no longer used.
-
-
-
Method Detail
-
sessionDestroy
void sessionDestroy(SessionDestroyEvent event)
Called when a Vaadin service session is no longer used.- Parameters:
event
- the event with details about the destroyed session
-
-