Java 类org.eclipse.paho.client.mqttv3.util.Debug 实例源码

项目:chii2mqtt    文件:MqttAsyncClient.java   
/**
 * Return a debug object that can be used to help solve problems.
 */
public Debug getDebug() {
    return new Debug(clientId, comms);
}
项目:chii2mqtt    文件:MqttConnectOptions.java   
public String toString() {
    return Debug.dumpProperties(getDebug(), "Connection options");
}
项目:chii2mqtt    文件:MqttClient.java   
/**
 * Return a debug object that can be used to help solve problems.
 */
public Debug getDebug() {
    return (aClient.getDebug());
}
项目:hestia-engine-dev    文件:MqttAsyncClient.java   
/**
 * Return a debug object that can be used to help solve problems.
 */
public Debug getDebug() {
    return new Debug(clientId,comms);
}
项目:hestia-engine-dev    文件:MqttConnectOptions.java   
public String toString() {
    return Debug.dumpProperties(getDebug(), "Connection options");
}
项目:hestia-engine-dev    文件:MqttClient.java   
/**
 * Return a debug object that can be used to help solve problems.
 */
public Debug getDebug() {
    return (aClient.getDebug());
}
项目:hestia-engine-dev    文件:MqttConnectOptions.java   
public String toString() {
    return Debug.dumpProperties(getDebug(), "Connection options");
}