All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feingto.iot.common.service.mqtt.MqttCallback Maven / Gradle / Ivy

There is a newer version: 2.3.3.RELEASE
Show newest version
package com.feingto.iot.common.service.mqtt;

import com.feingto.iot.common.model.mqtt.SendMessage;
import com.feingto.iot.common.service.ResponseCallback;

/**
 * MQTT 消费者消息回调接口
 *
 * @author longfei
 */
public abstract class MqttCallback implements ResponseCallback {
    protected abstract void onResponse(String topic, String message);

    @Override
    public void onResponse(SendMessage message) {
        onResponse(message.topic(), new String(message.payload()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy