Crates.io | spotflow-rumqttc-fork |
lib.rs | spotflow-rumqttc-fork |
version | 0.12.0 |
source | src |
created_at | 2024-06-11 10:47:02.909481 |
updated_at | 2024-06-11 10:47:02.909481 |
description | A temporary fork of rumqtt that allows getting packet ID from sent messages |
homepage | |
repository | https://github.com/spotflow-io/rumqtt |
max_upload_size | |
id | 1268077 |
size | 260,477 |
Note: This crate is made from the fork of rumqtt
that adds the following features:
native-tls
instead of rustls
for TLS connections (has been added to the original crate since then).Outgoing::Publish
so that it's easier pair acknowledgements with the original messages (will be solved in https://github.com/bytebeamio/rumqtt/issues/349).Once the original crate has both features, this crate won't be necessary any longer. We'll most likely yank it then.
The original README follows:
A pure rust MQTT client which strives to be robust, efficient and easy to use. This library is backed by an async (tokio) eventloop which handles all the robustness and and efficiency parts of MQTT but naturally fits into both sync and async worlds as we'll see
Let's jump into examples right away
use rumqttc::{MqttOptions, Client, QoS};
use std::time::Duration;
use std::thread;
let mut mqttoptions = MqttOptions::new("rumqtt-sync", "test.mosquitto.org", 1883);
mqttoptions.set_keep_alive(Duration::from_secs(5));
let (mut client, mut connection) = Client::new(mqttoptions, 10);
client.subscribe("hello/rumqtt", QoS::AtMostOnce).unwrap();
thread::spawn(move || for i in 0..10 {
client.publish("hello/rumqtt", QoS::AtLeastOnce, false, vec![i; i as usize]).unwrap();
thread::sleep(Duration::from_millis(100));
});
// Iterate to poll the eventloop for connection progress
for (i, notification) in connection.iter().enumerate() {
println!("Notification = {:?}", notification);
}
use rumqttc::{MqttOptions, AsyncClient, QoS};
use tokio::{task, time};
use std::time::Duration;
use std::error::Error;
let mut mqttoptions = MqttOptions::new("rumqtt-async", "test.mosquitto.org", 1883);
mqttoptions.set_keep_alive(Duration::from_secs(5));
let (mut client, mut eventloop) = AsyncClient::new(mqttoptions, 10);
client.subscribe("hello/rumqtt", QoS::AtMostOnce).await.unwrap();
task::spawn(async move {
for i in 0..10 {
client.publish("hello/rumqtt", QoS::AtLeastOnce, false, vec![i; i as usize]).await.unwrap();
time::sleep(Duration::from_millis(100)).await;
}
});
loop {
let notification = eventloop.poll().await.unwrap();
println!("Received = {:?}", notification);
}
Quick overview of features
eventloop.poll()/connection.iter()
loopclient.cancel()
In short, everything necessary to maintain a robust connection
Since the eventloop is externally polled (with iter()/poll()
in a loop)
out side the library and Eventloop
is accessible, users can
Looping on connection.iter()
/eventloop.poll()
is necessary to run the
event loop and make progress. It yields incoming and outgoing activity
notifications which allows customization as you see fit.
Blocking inside the connection.iter()
/eventloop.poll()
loop will block
connection progress.
Connecting to a broker using raw ip doesn't work
You cannot create a TLS connection to a bare IP address with a self-signed
certificate. This is a limitation of rustls.
One workaround, which only works under *nix/BSD-like systems, is to add an
entry to wherever your DNS resolver looks (e.g. /etc/hosts
) for the bare IP
address and use that name in your code.
License: Apache-2.0