1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 00:24:49 +02:00

Spellcheck.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6105 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Alex Wenckus 2006-11-14 21:51:03 +00:00 committed by alex
parent 53c97378d3
commit 8d5225c6a9

View file

@ -57,11 +57,13 @@ public interface ConnectionListener {
* The connection has reconnected successfully to the server. Connections will * The connection has reconnected successfully to the server. Connections will
* reconnect to the server when the previous socket connection was abruptly closed. * reconnect to the server when the previous socket connection was abruptly closed.
*/ */
public void reconectionSuccessful(); public void reconnectionSuccessful();
/** /**
* An attempt to connect to the server has failed. The connection will keep trying * An attempt to connect to the server has failed. The connection will keep trying
* reconnecting to the server in a moment. * reconnecting to the server in a moment.
*
* @param e the exception that caused the reconnection to fail.
*/ */
public void reconnectionFailed(Exception e); public void reconnectionFailed(Exception e);
} }