Class WsSessionListener
- java.lang.Object
- 
- org.apache.tomcat.websocket.server.WsSessionListener
 
- 
- All Implemented Interfaces:
- java.util.EventListener,- HttpSessionListener
 
 public class WsSessionListener extends java.lang.Object implements HttpSessionListener 
- 
- 
Constructor SummaryConstructors Constructor Description WsSessionListener(WsServerContainer wsServerContainer)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsessionCreated(HttpSessionEvent se)Notification that a session was created.voidsessionDestroyed(HttpSessionEvent se)Notification that a session is about to be invalidated.
 
- 
- 
- 
Constructor Detail- 
WsSessionListenerpublic WsSessionListener(WsServerContainer wsServerContainer) 
 
- 
 - 
Method Detail- 
sessionCreatedpublic void sessionCreated(HttpSessionEvent se) Description copied from interface:javax.servlet.http.HttpSessionListenerNotification that a session was created.- Specified by:
- sessionCreatedin interface- HttpSessionListener
- Parameters:
- se- the notification event
 
 - 
sessionDestroyedpublic void sessionDestroyed(HttpSessionEvent se) Description copied from interface:javax.servlet.http.HttpSessionListenerNotification that a session is about to be invalidated.- Specified by:
- sessionDestroyedin interface- HttpSessionListener
- Parameters:
- se- the notification event
 
 
- 
 
-