Package org.cometd.bayeux.server
Interface ServerSession.RemoveListener
-
- All Superinterfaces:
org.cometd.bayeux.Bayeux.BayeuxListener,EventListener,ServerSession.RemovedListener,ServerSession.ServerSessionListener
- Enclosing interface:
- ServerSession
@Deprecated public static interface ServerSession.RemoveListener extends ServerSession.RemovedListener
Deprecated.useServerSession.RemovedListenerinsteadListeners objects that implement this interface will be notified of session removal.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidremoved(ServerSession session, boolean timeout)Deprecated.Callback invoked when the session is removed.default voidremoved(ServerSession session, ServerMessage message, boolean timeout)Deprecated.Callback invoked when the session is removed.
-
-
-
Method Detail
-
removed
default void removed(ServerSession session, ServerMessage message, boolean timeout)
Deprecated.Description copied from interface:ServerSession.RemovedListenerCallback invoked when the session is removed.
- Specified by:
removedin interfaceServerSession.RemovedListener- Parameters:
session- the removed sessionmessage- the message that caused the session removal, or nulltimeout- whether the session has been removed due to a timeout
-
removed
void removed(ServerSession session, boolean timeout)
Deprecated.Callback invoked when the session is removed.
- Parameters:
session- the removed sessiontimeout- whether the session has been removed due to a timeout
-
-