Uses of Enum
io.netty.handler.codec.mqtt.MqttQoS
Packages that use MqttQoS
Package
Description
Encoder, decoder and different Message Types for MQTT.
-
Uses of MqttQoS in io.netty.handler.codec.mqtt
Fields in io.netty.handler.codec.mqtt declared as MqttQoSModifier and TypeFieldDescriptionprivate MqttQoS
MqttMessageBuilders.PublishBuilder.qos
private final MqttQoS
MqttSubscriptionOption.qos
private final MqttQoS
MqttFixedHeader.qosLevel
private MqttQoS
MqttMessageBuilders.ConnectBuilder.willQos
Fields in io.netty.handler.codec.mqtt with type parameters of type MqttQoSMethods in io.netty.handler.codec.mqtt that return MqttQoSModifier and TypeMethodDescriptionMqttSubscriptionOption.qos()
MqttFixedHeader.qosLevel()
MqttTopicSubscription.qualityOfService()
static MqttQoS
MqttQoS.valueOf
(int value) Returns the enum constant of this type with the specified name.static MqttQoS
Returns the enum constant of this type with the specified name.static MqttQoS[]
MqttQoS.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.mqtt with parameters of type MqttQoSModifier and TypeMethodDescriptionMqttMessageBuilders.SubAckBuilder.addGrantedQos
(MqttQoS qos) MqttMessageBuilders.SubAckBuilder.addGrantedQoses
(MqttQoS... qoses) MqttMessageBuilders.SubscribeBuilder.addSubscription
(MqttQoS qos, String topic) static MqttSubscriptionOption
MqttSubscriptionOption.onlyFromQos
(MqttQoS qos) Constructors in io.netty.handler.codec.mqtt with parameters of type MqttQoSModifierConstructorDescriptionMqttFixedHeader
(MqttMessageType messageType, boolean isDup, MqttQoS qosLevel, boolean isRetain, int remainingLength) MqttSubscriptionOption
(MqttQoS qos, boolean noLocal, boolean retainAsPublished, MqttSubscriptionOption.RetainedHandlingPolicy retainHandling) MqttTopicSubscription
(String topicFilter, MqttQoS qualityOfService)