我找不到重新连接 mqtt 回调客户端的逻辑。有方法 onDisconnected() 但我无法在互联网上找到文档或任何示例示例。
我的听众
公共类 MyListener 实现监听器 {
public MyListener()
{
}
@Override
public void onConnected()
{
System.out.println("Connected ....");
}
@Override
public void onDisconnected()
{
System.out.println("Disconnected");
}
@Override
public void onPublish(UTF8Buffer topic, Buffer body, Runnable ack)
{
System.out.println("Entered Onpublish");
try
{
System.out.println("received msg:" + msg);
}
catch (HikeException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
finally{
ack.run();
}
}
@Override
public void onFailure(Throwable value)
{
value.printStackTrace();
}
}
创建连接
private void createConnection(String host, int port,String id, String token) throws Exception
{
this.disconnect();
MQTT mqtt = new MQTT();
mqtt.setHost(host, port);
mqtt.setUserName(id);
mqtt.setPassword(token);
CallbackConnection callbackConnection = null;
callbackConnection = mqtt.callbackConnection();
callbackConnection.listener(new MyListener());
callbackConnection.connect(new MyCallback<Void>("CONNECT"));
callbackConnection.subscribe(new Topic[] { new Topic(uid + "/u", QoS.AT_MOST_ONCE) }, new MyCallback<byte[]>("EVENT SUBSCRIBE"));
callbackConnection.subscribe(new Topic[] { new Topic(uid + "/s", QoS.AT_LEAST_ONCE), new Topic(uid + "/a", QoS.AT_LEAST_ONCE) }, new MyCallback<byte[]>("MSG SUBSCRIBE"));
this.callbackConnection = callbackConnection;
}
我的回调
class MyCallback<T> implements Callback<T>
{
public MyCallback(String tag)
{
super();
this.tag = tag;
}
String tag;
@Override
public void onSuccess(T value)
{
System.out.println("TAG:" + tag + " =SUCCESS value=" + value);
}
@Override
public void onFailure(Throwable value)
{
System.out.println("TAG:" + tag + "Fail");
value.printStackTrace();
}
}
我的问题是如何实现 mqtt 重新连接到服务器逻辑?如果我应该使用 onDisconnect() 方法,那么我该如何使用它?