Uses of Enum
software.amazon.awssdk.crt.mqtt.QualityOfService
Packages that use QualityOfService
-
Uses of QualityOfService in software.amazon.awssdk.crt.mqtt
Methods in software.amazon.awssdk.crt.mqtt that return QualityOfServiceModifier and TypeMethodDescriptionstatic QualityOfServiceQualityOfService.getEnumValueFromInteger(int value) Creates a Java QualityOfService enum value from a native integer valueMqttMessage.getQos()Gets theQualityOfService.MqttConnectionConfig.getWillQos()Deprecated.static QualityOfServiceReturns 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 QualityOfServiceModifier and TypeMethodDescriptionMqttClientConnection.publish(MqttMessage message, QualityOfService qos, boolean retain) Deprecated.voidMqttConnectionConfig.setWillQos(QualityOfService qos) Deprecated.Set QoS directly on the will'sMqttMessage.MqttClientConnection.subscribe(String topic, QualityOfService qos) Subscribes to a topic without a handler (messages will only be delivered to the OnMessage handler)MqttClientConnection.subscribe(String topic, QualityOfService qos, Consumer<MqttMessage> handler) Subscribes to a topicConstructors in software.amazon.awssdk.crt.mqtt with parameters of type QualityOfServiceModifierConstructorDescriptionMqttMessage(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.
MqttMessage.