Package org.apache.wicket
Interface ISessionListener
-
- All Known Implementing Classes:
SessionListenerCollection
public interface ISessionListenerSessionlistener- Author:
- igor
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidonCreated(Session session)Called when a new instance of session is createddefault voidonUnbound(java.lang.String sessionId)Informs the listener that session with specific id has been unbound.
-
-
-
Method Detail
-
onCreated
default void onCreated(Session session)
Called when a new instance of session is created- Parameters:
session-
-
onUnbound
default void onUnbound(java.lang.String sessionId)
Informs the listener that session with specific id has been unbound.- Parameters:
sessionId- the id of the unbound session
-
-