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

org.jetlinks.supports.utils.MqttTopicUtils Maven / Gradle / Ivy

The newest version!
package org.jetlinks.supports.utils;

import org.jetlinks.core.utils.TopicUtils;

import java.util.Map;


/**
 * 已弃用,使用 {@link TopicUtils}代替
 */
@Deprecated
public class MqttTopicUtils {
    public static boolean match(String topic, String target) {
        return TopicUtils.match(topic, target);

    }

    public static Map getPathVariables(String template, String topic) {
        return TopicUtils.getPathVariables(template, topic);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy