MQTT v3.1.1 client library for iOS and OS X written with Swift 2
Build with Xcode 7.0 / Swift 2
Example in 'main.swift':
let mqttCli = CocoaMQTTCli()
let clientIdPid = "CocoaMQTT-" + String(NSProcessInfo().processIdentifier)
let mqtt = CocoaMQTT(clientId: clientIdPid, host: "localhost", port: 1883)
mqtt.username = "test"
mqtt.password = "public"
mqtt.willMessage = CocoaMQTTWill(topic: "/will", message: "dieout")
mqtt.keepAlive = 90
mqtt.delegate = mqttCli
mqtt.connect()
dispatch_main()
/**
* Blueprint of the mqtt client
**/
protocol CocoaMQTTClient {
var host: String { get set }
var port: UInt16 { get set }
var clientId: String { get }
var username: String? {get set}
var password: String? {get set}
var cleansess: Bool {get set}
var keepAlive: UInt16 {get set}
var willMessage: CocoaMQTTWill? {get set}
func connect() -> Bool
func publish(topic: String, withString string: String, qos: CocoaMQTTQOS) -> UInt16
func publish(message: CocoaMQTTMessage) -> UInt16
func subscribe(topic: String, qos: CocoaMQTTQOS) -> UInt16
func unsubscribe(topic: String) -> UInt16
func ping()
func disconnect()
}
protocol CocoaMQTTDelegate {
/**
* MQTT connected with server
*/
func mqtt(mqtt: CocoaMQTT, didConnect host: String, port: Int)
func mqtt(mqtt: CocoaMQTT, didConnectAck ack: CocoaMQTTConnAck)
func mqtt(mqtt: CocoaMQTT, didPublishMessage message: CocoaMQTTMessage, id: UInt16)
func mqtt(mqtt: CocoaMQTT, didReceiveMessage message: CocoaMQTTMessage, id: UInt16 )
func mqtt(mqtt: CocoaMQTT, didSubscribeTopic topic: String)
func mqtt(mqtt: CocoaMQTT, didUnsubscribeTopic topic: String)
func mqttDidPing(mqtt: CocoaMQTT)
func mqttDidReceivePong(mqtt: CocoaMQTT)
func mqttDidDisconnect(mqtt: CocoaMQTT, withError err: NSError)
}
These third-party functions are used:
MIT License (see LICENSE
)
Feng Lee feng@emqtt.io