Uses of Class
software.amazon.awssdk.crt.mqtt5.QOS
-
Packages that use QOS Package Description software.amazon.awssdk.crt.mqtt5 software.amazon.awssdk.crt.mqtt5.packets -
-
Uses of QOS in software.amazon.awssdk.crt.mqtt5
Methods in software.amazon.awssdk.crt.mqtt5 that return QOS Modifier and Type Method Description static QOS
QOS. getEnumValueFromInteger(int value)
Creates a Java QualityOfService enum value from a native integer value.QOS
NegotiatedSettings. getMaximumQOS()
static QOS
QOS. valueOf(String name)
Returns the enum constant of this type with the specified name.static QOS[]
QOS. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of QOS in software.amazon.awssdk.crt.mqtt5.packets
Methods in software.amazon.awssdk.crt.mqtt5.packets that return QOS Modifier and Type Method Description QOS
ConnAckPacket. getMaximumQOS()
Returns the maximum message delivery quality of service that the server will allow on this connection.QOS
PublishPacket. getQOS()
Sent publishes - Returns the MQTT quality of service level this message should be delivered with.QOS
SubscribePacket.Subscription. getQOS()
Returns the maximum QoS on which the subscriber will accept publish messages.Methods in software.amazon.awssdk.crt.mqtt5.packets with parameters of type QOS Modifier and Type Method Description PublishPacket.PublishPacketBuilder
PublishPacket.PublishPacketBuilder. withQOS(QOS packetQOS)
Sets the MQTT quality of service level the message should be delivered with.SubscribePacket.SubscribePacketBuilder
SubscribePacket.SubscribePacketBuilder. withSubscription(String topicFilter, QOS qos)
Sets a single subscription within the SubscribePacket.SubscribePacket.SubscribePacketBuilder
SubscribePacket.SubscribePacketBuilder. withSubscription(String topicFilter, QOS qos, Boolean noLocal, Boolean retainAsPublished, SubscribePacket.RetainHandlingType retainHandlingType)
Sets a single subscription within the SubscribePacket.Constructors in software.amazon.awssdk.crt.mqtt5.packets with parameters of type QOS Constructor Description PublishPacketBuilder(String topic, QOS packetQOS, byte[] payload)
Creates a new PublishPacketBuilder with common parameters set.SubscribePacketBuilder(String topicFilter, QOS qos)
Creates a new SubscribePacketBuilder with one subscription defined.
-