Package org.cometd.bayeux.server
Interface ServerSession.AddListener
-
- All Superinterfaces:
Bayeux.BayeuxListener
,EventListener
,ServerSession.ServerSessionListener
- Enclosing interface:
- ServerSession
public static interface ServerSession.AddListener extends ServerSession.ServerSessionListener
Listener objects that implement this interface will be notified of session addition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
added(ServerSession session)
Callback method invoked when the session is added to aBayeuxServer
.
-
-
-
Method Detail
-
added
void added(ServerSession session)
Callback method invoked when the session is added to a
BayeuxServer
.- Parameters:
session
- the added session
-
-