Package org.jivesoftware.smack
Interface ConnectionCreationListener
-
public interface ConnectionCreationListener
Implementors of this interface will be notified when a newXMPPConnectionhas been created. The newly created connection will not be actually connected to the server. UseXMPPConnectionRegistry.addConnectionCreationListener(ConnectionCreationListener)to add new listeners.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconnectionCreated(XMPPConnection connection)Notification that a new connection has been created.
-
-
-
Method Detail
-
connectionCreated
void connectionCreated(XMPPConnection connection)
Notification that a new connection has been created. The new connection will not yet be connected to the server.- Parameters:
connection- the newly created connection.
-
-