Giter Site home page Giter Site logo

swift-mqtt's Introduction

swift-mqtt

Asynchronous MQTT client library using SwiftNIO for networking layer.

Usage

Create an instance of MQTTClient with parameters for connection.

let client = MQTTClient(
    host: "localhost",
    port: 1883,
    clientID: "swift-mqtt client",
    cleanSession: true,
    keepAlive: 30,
    willMessage: PublishMessage(topic: "will", payload: "will msg", retain: false, qos: .atMostOnce),
)
client.connect()

You can handle events with delegate methods.

client.delegate = self

...

// MQTTClientDelegate

func mqttClient(_ client: MQTTClient, didReceive packet: MQTTPacket) {
    ...
}

func mqttClient(_ client: MQTTClient, didChange state: ConnectionState) {
    ...
}

func mqttClient(_ client: MQTTClient, didCatchError error: Error) {
    ...
}

Publish

client.publish(topic: "topic", retain: false, qos: QOS.0, payload: "payload")

Subscribe

client.subscribe(topic: "topic", qos: QOS.0)

Unsubscribe

client.unsubscribe(topic: "topic")

Disconnect

client.disconnect()

SSL/TLS connection

This library uses SwiftNIO SSL for SSL connection. You can configure settings of a client.

let caCert = "./server/certs/ca/ca_cert.pem"
let clientCert = "./server/certs/client/client_cert.pem"
let keyCert = "./server/certs/client/private/client_key.pem"
let tlsConfiguration = try? TLSConfiguration.forClient(
    minimumTLSVersion: .tlsv11,
    maximumTLSVersion: .tlsv12,
    certificateVerification: .noHostnameVerification,
    trustRoots: NIOSSLTrustRoots.certificates(NIOSSLCertificate.fromPEMFile(caCert)),
    certificateChain: NIOSSLCertificate.fromPEMFile(clientCert).map { .certificate($0) },
    privateKey: .privateKey(.init(file: keyCert, format: .pem))
)

client.tlsConfiguration = tlsConfiguration

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.