Uses of Class
io.netty.handler.codec.mqtt.MqttQoS
-
Packages that use MqttQoS Package Description io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT. -
-
Uses of MqttQoS in io.netty.handler.codec.mqtt
Methods in io.netty.handler.codec.mqtt that return MqttQoS Modifier and Type Method Description MqttQoSMqttSubscriptionOption. qos()MqttQoSMqttFixedHeader. qosLevel()MqttQoSMqttTopicSubscription. qualityOfService()static MqttQoSMqttQoS. valueOf(int value)Returns the enum constant of this type with the specified name.static MqttQoSMqttQoS. valueOf(java.lang.String name)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 MqttQoS Modifier and Type Method Description MqttMessageBuilders.SubAckBuilderMqttMessageBuilders.SubAckBuilder. addGrantedQos(MqttQoS qos)MqttMessageBuilders.SubAckBuilderMqttMessageBuilders.SubAckBuilder. addGrantedQoses(MqttQoS... qoses)MqttMessageBuilders.SubscribeBuilderMqttMessageBuilders.SubscribeBuilder. addSubscription(MqttQoS qos, java.lang.String topic)static MqttSubscriptionOptionMqttSubscriptionOption. onlyFromQos(MqttQoS qos)MqttMessageBuilders.PublishBuilderMqttMessageBuilders.PublishBuilder. qos(MqttQoS qos)MqttMessageBuilders.ConnectBuilderMqttMessageBuilders.ConnectBuilder. willQoS(MqttQoS willQos)Constructors in io.netty.handler.codec.mqtt with parameters of type MqttQoS Constructor Description MqttFixedHeader(MqttMessageType messageType, boolean isDup, MqttQoS qosLevel, boolean isRetain, int remainingLength)MqttSubscriptionOption(MqttQoS qos, boolean noLocal, boolean retainAsPublished, MqttSubscriptionOption.RetainedHandlingPolicy retainHandling)MqttTopicSubscription(java.lang.String topicFilter, MqttQoS qualityOfService)
-