Skip to content
leeway edited this page Nov 19, 2021 · 1 revision

CocoaMQTTQoS

Quality of Service levels

@objc public enum CocoaMQTTQoS: UInt8, CustomStringConvertible 

Inheritance

Comparable, CustomStringConvertible, UInt8

Enumeration Cases

qos0

At most once delivery

case qos0 = 0

qos1

At least once delivery

case qos1

qos2

Exactly once delivery

case qos2

FAILTURE

!!! Used SUBACK frame only

case FAILTURE = 0x80

Properties

description

public var description: String 

Operators

<

public static func < (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool 

<=

public static func <= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool 

>

public static func > (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool 

>=

public static func >= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool 
Types
Protocols
Global Variables
Clone this wiki locally