mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 04:22:05 +01:00
Add convenience class for connection listener
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/branches/improve_bytestreams@11817 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
5e2990b2cd
commit
0540662db2
1 changed files with 46 additions and 0 deletions
|
@ -0,0 +1,46 @@
|
||||||
|
/**
|
||||||
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.jivesoftware.smack;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The AbstractConnectionListener class provides an empty implementation for all
|
||||||
|
* methods defined by the {@link ConnectionListener} interface. This is a
|
||||||
|
* convenience class which should be used in case you do not need to implement
|
||||||
|
* all methods.
|
||||||
|
*
|
||||||
|
* @author Henning Staib
|
||||||
|
*/
|
||||||
|
public class AbstractConnectionListener implements ConnectionListener {
|
||||||
|
|
||||||
|
public void connectionClosed() {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
public void connectionClosedOnError(Exception e) {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
public void reconnectingIn(int seconds) {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
public void reconnectionFailed(Exception e) {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
public void reconnectionSuccessful() {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue