Uses of Class
software.amazon.awssdk.crt.mqtt.QualityOfService
-
Packages that use QualityOfService Package Description software.amazon.awssdk.crt.mqtt -
-
Uses of QualityOfService in software.amazon.awssdk.crt.mqtt
Methods in software.amazon.awssdk.crt.mqtt that return QualityOfService Modifier and Type Method Description static QualityOfServiceQualityOfService. getEnumValueFromInteger(int value)Creates a Java QualityOfService enum value from a native integer valueQualityOfServiceMqttMessage. getQos()Gets theQualityOfService.QualityOfServiceMqttConnectionConfig. getWillQos()Deprecated.Query QoS directly from the will'sMqttMessage.static QualityOfServiceQualityOfService. valueOf(String name)Returns the enum constant of this type with the specified name.static QualityOfService[]QualityOfService. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in software.amazon.awssdk.crt.mqtt with parameters of type QualityOfService Modifier and Type Method Description CompletableFuture<Integer>MqttClientConnection. publish(MqttMessage message, QualityOfService qos, boolean retain)Deprecated.voidMqttConnectionConfig. setWillQos(QualityOfService qos)Deprecated.Set QoS directly on the will'sMqttMessage.CompletableFuture<Integer>MqttClientConnection. subscribe(String topic, QualityOfService qos)Subscribes to a topic without a handler (messages will only be delivered to the OnMessage handler)CompletableFuture<Integer>MqttClientConnection. subscribe(String topic, QualityOfService qos, Consumer<MqttMessage> handler)Subscribes to a topicConstructors in software.amazon.awssdk.crt.mqtt with parameters of type QualityOfService Constructor Description MqttMessage(String topic, byte[] payload, QualityOfService qos)Constructs a new message.MqttMessage(String topic, byte[] payload, QualityOfService qos, boolean retain)Constructs a new message.MqttMessage(String topic, byte[] payload, QualityOfService qos, boolean retain, boolean dup)Constructs a new message.
-