Package org.jivesoftware.smack
Class XMPPConnectionRegistry
java.lang.Object
org.jivesoftware.smack.XMPPConnectionRegistry
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
addConnectionCreationListener
(ConnectionCreationListener connectionCreationListener) Adds a new listener that will be notified when new Connections are created.protected static Collection<ConnectionCreationListener>
Get the collection of listeners that are interested in connection creation events.static void
removeConnectionCreationListener
(ConnectionCreationListener connectionCreationListener) Removes a listener that was interested in connection creation events.
-
Constructor Details
-
XMPPConnectionRegistry
public XMPPConnectionRegistry()
-
-
Method Details
-
addConnectionCreationListener
public static void addConnectionCreationListener(ConnectionCreationListener connectionCreationListener) Adds a new listener that will be notified when new Connections are created. Note that newly created connections will not be actually connected to the server.- Parameters:
connectionCreationListener
- a listener interested on new connections.
-
removeConnectionCreationListener
public static void removeConnectionCreationListener(ConnectionCreationListener connectionCreationListener) Removes a listener that was interested in connection creation events.- Parameters:
connectionCreationListener
- a listener interested on new connections.
-
getConnectionCreationListeners
Get the collection of listeners that are interested in connection creation events.- Returns:
- a collection of listeners interested on new connections.
-