Package org.jivesoftware.openfire.event
Interface ServerSessionEventListener
-
- All Known Implementing Classes:
SoftwareServerVersionManager
public interface ServerSessionEventListener
Interface to listen for server session events (s2s). Use theServerSessionEventDispatcher.addListener(ServerSessionEventListener)
method to register for events.- Author:
- Manasse Ngudia manasse@mnsuccess.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
sessionCreated(Session session)
Notification event indicating that a server has connected with the server.void
sessionDestroyed(Session session)
A connected session of a server was destroyed.
-
-
-
Method Detail
-
sessionCreated
void sessionCreated(Session session)
Notification event indicating that a server has connected with the server.- Parameters:
session
- the connected session of a server
-
sessionDestroyed
void sessionDestroyed(Session session)
A connected session of a server was destroyed.- Parameters:
session
- the connected session of a server.
-
-