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
1 changed files with 3 additions and 1 deletions

View File

@ -57,11 +57,13 @@ public interface ConnectionListener {
* The connection has reconnected successfully to the server. Connections will
* 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
* reconnecting to the server in a moment.
*
* @param e the exception that caused the reconnection to fail.
*/
public void reconnectionFailed(Exception e);
}