cn.featherfly.common.mqtt.Qos Maven / Gradle / Ivy
package cn.featherfly.common.mqtt;
/**
*
* Qos
*
*
* @author zhongj
*/
public enum Qos {
/**
* 最多一次
*/
AT_MOST_ONCE,
/**
* 最少一次
*/
AT_LEAST_ONCE,
/**
* 只有一次
*/
ONLY_ONCE;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy