Package org.cometd.bayeux.server
Interface ServerSession.AddListener
-
- All Superinterfaces:
org.cometd.bayeux.Bayeux.BayeuxListener,EventListener,ServerSession.AddedListener,ServerSession.ServerSessionListener
- Enclosing interface:
- ServerSession
@Deprecated public static interface ServerSession.AddListener extends ServerSession.AddedListener
Deprecated.useServerSession.AddedListenerinsteadListener objects that implement this interface will be notified of session addition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidadded(ServerSession session)Deprecated.Callback method invoked when the session is added to aBayeuxServer.default voidadded(ServerSession session, ServerMessage message)Deprecated.Callback method invoked when the session is added to aBayeuxServer.
-
-
-
Method Detail
-
added
default void added(ServerSession session, ServerMessage message)
Deprecated.Description copied from interface:ServerSession.AddedListenerCallback method invoked when the session is added to a
BayeuxServer.- Specified by:
addedin interfaceServerSession.AddedListener- Parameters:
session- the added sessionmessage- the message that caused the session addition
-
added
void added(ServerSession session)
Deprecated.Callback method invoked when the session is added to a
BayeuxServer.- Parameters:
session- the added session
-
-