Uses of Enum
software.amazon.awssdk.crt.mqtt5.QOS
Packages that use QOS
-
Uses of QOS in software.amazon.awssdk.crt.mqtt5
Methods in software.amazon.awssdk.crt.mqtt5 that return QOSModifier and TypeMethodDescriptionstatic QOSQOS.getEnumValueFromInteger(int value) Creates a Java QualityOfService enum value from a native integer value.NegotiatedSettings.getMaximumQOS()static QOSReturns 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 QOSModifier and TypeMethodDescriptionConnAckPacket.getMaximumQOS()Returns the maximum message delivery quality of service that the server will allow on this connection.PublishPacket.getQOS()Sent publishes - Returns the MQTT quality of service level this message should be delivered with.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 QOSModifier and TypeMethodDescriptionstatic PublishPacketCreates aPublishPacketcontaining only the most common fields: topic, QoS, and payload.static SubscribePacketCreates aSubscribePacketcontaining only a single subscription topic and qos: topicFilter, QoS.Sets the MQTT quality of service level the message should be delivered with.SubscribePacket.SubscribePacketBuilder.withSubscription(String topicFilter, QOS qos) Sets a single subscription within the SubscribePacket.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 QOSModifierConstructorDescriptionPublishPacketBuilder(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.