FleetMQ 1.0.45
dotnet add package FleetMQ --version 1.0.45
NuGet\Install-Package FleetMQ -Version 1.0.45
<PackageReference Include="FleetMQ" Version="1.0.45" />
<PackageVersion Include="FleetMQ" Version="1.0.45" />
<PackageReference Include="FleetMQ" />
paket add FleetMQ --version 1.0.45
#r "nuget: FleetMQ, 1.0.45"
#:package FleetMQ@1.0.45
#addin nuget:?package=FleetMQ&version=1.0.45
#tool nuget:?package=FleetMQ&version=1.0.45
FleetMQ C# SDK
The FleetMQ C# SDK lets your application send and receive data through the FleetMQ Node running on the same device. Communication uses ZMQ sockets — the SDK handles socket setup and port negotiation automatically.
Installation
Install the SDK from NuGet:
dotnet add package FleetMQSDK
Or in your .csproj:
<PackageReference Include="FleetMQSDK" Version="*" />
Prerequisites
The FleetMQ Node must be running on the device before your application starts. The SDK connects to it on localhost at construction time.
Quick Start
using FleetMQSDK;
using var fleetMQ = FleetMQ.Connect();
fleetMQ.Publish("my-topic", "Hello World!");
string msg = fleetMQ.Receive("my-topic");
Initialization
FleetMQ.Connect()
Creates a FleetMQ client, connects to the FleetMQ Node, fetches the device config, and sets up all publishers and subscribers defined in that config. Blocks until the config is received. All parameters are optional.
using var fleetMQ = FleetMQ.Connect();
Full signature:
FleetMQ.Connect(
string logPort = "5550", // Port for forwarding SDK logs to the FleetMQ Node
string reqPort = "5558", // RPC port for config and publisher/subscriber provisioning
string pullPort = "5557", // Push/pull port for config and metrics delivery
int publishRateHz = 200 // Max publish rate in Hz, clamped to 20–200
)
reqPort and pullPort do not normally need to be changed. Only set them if you have a port conflict on your machine — if you do, the corresponding port flags on the FleetMQ Node must be set to match.
FleetMQ implements IDisposable — use using to ensure sockets are cleaned up automatically.
Publishing
Publish(string topic, string message)
Publishes a string message to the given topic. Throws if the publisher does not exist.
fleetMQ.Publish("vehicle/telemetry", "speed=42.5");
PublishBytes(string topic, byte[] message)
Publishes raw bytes to the given topic. Throws if the publisher does not exist.
byte[] payload = BitConverter.GetBytes(42.5f);
fleetMQ.PublishBytes("vehicle/sensors", payload);
Publisher behaviour: Publishers buffer the latest message and send at the configured rate (publishRateHz). If you call Publish or PublishBytes faster than the rate allows, only the most recent value is sent — older values are dropped. This is intentional for sensor/telemetry data where only the latest reading matters.
CreatePublisher(string topic, bool ipc = false)
Manually provisions a publisher for a topic via RPC to the FleetMQ Node. Only needed for topics not in the device config. If a publisher for this topic already exists, this is a no-op.
fleetMQ.CreatePublisher("vehicle/telemetry");
Subscribing
Receive(string topic)
Blocks until the next string message is available for the topic. Throws if the subscriber does not exist.
string msg = fleetMQ.Receive("operator/commands");
Console.WriteLine($"Received: {msg}");
ReceiveBytes(string topic)
Blocks until the next message is available, returning it as byte[]. Throws if the subscriber does not exist.
byte[] raw = fleetMQ.ReceiveBytes("vehicle/sensors");
CreateSubscriber(string topic, bool ipc = false)
Manually provisions a subscriber for a topic via RPC to the FleetMQ Node. Only needed for topics not in the device config. If a subscriber for this topic already exists, this is a no-op.
fleetMQ.CreateSubscriber("operator/commands");
Metrics and Events
PullMetricsAndEvents()
Returns (List<FleetMQMetric> metrics, FleetMQEvent? eventObj)? — null if nothing is available, or a tuple containing a list of metrics and an optional event. Call this periodically to monitor connection quality and adapt your application's behaviour. Metrics include one-way latency between your device and each peer, which your SDK can use to make real-time decisions — for example, reducing publish frequency, switching to a lower-fidelity data stream, or surfacing connection quality indicators in your UI.
var result = fleetMQ.PullMetricsAndEvents();
if (result.HasValue)
{
var (metrics, eventObj) = result.Value;
foreach (var metric in metrics)
Console.WriteLine($"{metric.Type}: {metric.Value} (peer={metric.Peer}, ts={metric.Timestamp})");
if (eventObj != null)
Console.WriteLine($"Event: {eventObj.Type} = {eventObj.Value}");
}
FleetMQMetric properties
| Property | Type | Description |
|---|---|---|
Type |
string |
Metric type |
Value |
object |
Metric value (string or double) |
Peer |
string |
Peer device the metric relates to |
Timestamp |
double? |
Unix timestamp in seconds |
FleetMQEvent properties
| Property | Type | Description |
|---|---|---|
Type |
string |
Event type (e.g. "latency_gate") |
Value |
object |
Event value |
Timestamp |
double? |
Unix timestamp in milliseconds |
FleetMQLatencyGateEvent (subtype of FleetMQEvent)
Cast to this type when Type == "latency_gate":
if (eventObj is FleetMQLatencyGateEvent lg)
Console.WriteLine($"Gated={lg.Value}, Timestamp={lg.Timestamp}");
Latency gate behaviour: A latency gate event is fired when the round-trip latency between your device and a peer crosses a configured threshold. When Gated is true, the FleetMQ Node has paused data flow on that connection to protect against sending stale data over a degraded link. When Gated is false, the connection has recovered and data flow has resumed. Use these events to update your UI or trigger application-level responses — for example, alerting the operator that the connection is degraded or suppressing controls that depend on low-latency feedback.
FleetMQVideoQualityEvent (subtype of FleetMQEvent)
Cast to this type when Type == "video_quality". The FleetMQ Node continuously monitors network conditions and adjusts the outgoing video stream to match available bandwidth. This event is fired each time the quality tier changes.
if (eventObj is FleetMQVideoQualityEvent vq)
{
dynamic val = vq.Value;
Console.WriteLine($"Video quality: {val.tier} (cause: {val.triggeringMetric})");
if (val.tier == "CRITICAL")
Console.WriteLine("Warning: severe network degradation, video resolution reduced");
}
Tier values:
| Tier | Meaning |
|---|---|
"Normal" |
Network is healthy. Full resolution and bitrate. |
"Degraded" |
Elevated latency, packet loss, or jitter. Bitrate reduced to 50%. |
"Critical" |
Severe network degradation. Bitrate reduced to 20%. |
| Property | Type | Description |
|---|---|---|
tier |
string |
Current quality tier (see above) |
triggeringMetric |
string |
Metric that caused the change: "Latency", "PacketLoss", or "Jitter" |
latencySource |
string? |
How latency was measured: "CalculatedEstimate" or "Rtt". Only set when triggeringMetric is "Latency" |
Timestamp |
double? |
Event timestamp in milliseconds |
Cleanup
Dispose()
Cancels the publisher background thread, closes all sockets, and releases resources. Called automatically when using using.
fleetMQ.Dispose();
// or just: using var fleetMQ = FleetMQ.Connect();
Full Example
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using FleetMQSDK;
using var fleetMQ = FleetMQ.Connect();
Console.WriteLine("Connected to FleetMQ!");
var cts = new CancellationTokenSource();
var tasks = new List<Task>
{
Task.Run(() => Publish(fleetMQ, "vehicle/telemetry", cts.Token)),
Task.Run(() => Subscribe(fleetMQ, "operator/commands", cts.Token)),
Task.Run(() => PollMetrics(fleetMQ, cts.Token)),
};
Console.ReadLine();
cts.Cancel();
await Task.WhenAll(tasks);
static async Task Publish(FleetMQ fleetMQ, string topic, CancellationToken token)
{
while (!token.IsCancellationRequested)
{
fleetMQ.Publish(topic, "Hello World!");
await Task.Delay(1000, token);
}
}
static async Task Subscribe(FleetMQ fleetMQ, string topic, CancellationToken token)
{
while (!token.IsCancellationRequested)
{
string msg = fleetMQ.Receive(topic); // blocks until a message arrives
Console.WriteLine($"Received: {msg}");
}
}
static async Task PollMetrics(FleetMQ fleetMQ, CancellationToken token)
{
while (!token.IsCancellationRequested)
{
var result = fleetMQ.PullMetricsAndEvents();
if (result.HasValue)
{
var (metrics, eventObj) = result.Value;
foreach (var m in metrics)
Console.WriteLine($"Metric: {m.Type} = {m.Value}");
if (eventObj != null)
Console.WriteLine($"Event: {eventObj.Type}");
}
await Task.Delay(500, token);
}
}
Binary data example
using FleetMQSDK;
using var fleetMQ = FleetMQ.Connect();
// Publish bytes
byte[] payload = BitConverter.GetBytes(36.7f);
fleetMQ.PublishBytes("vehicle/sensors", payload);
// Receive bytes
byte[] raw = fleetMQ.ReceiveBytes("vehicle/sensors");
float value = BitConverter.ToSingle(raw, 0);
Console.WriteLine($"Temperature: {value}");
Notes
Receive()andReceiveBytes()block until a message arrives. Always run them on a dedicated thread orTaskto avoid blocking the rest of your application.- Topic names must exactly match what is configured in the FleetMQ dashboard. A mismatch will cause
Publish,PublishBytes,Receive, orReceiveBytesto throw. - On Windows, the SDK automatically connects to
tcp://host.docker.internalinstead oflocalhostto support Docker-based deployments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Google.Protobuf (>= 3.25.3)
- ilmerge (>= 3.0.29)
- NetMQ (>= 4.0.1.13)
- NUnit (>= 4.0.1)
- System.Text.Json (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.45 | 55 | 6/4/2026 |
| 1.0.44 | 93 | 6/3/2026 |
| 1.0.43 | 105 | 5/25/2026 |
| 1.0.42 | 134 | 4/17/2026 |
| 1.0.41 | 125 | 4/16/2026 |
| 1.0.40 | 127 | 4/10/2026 |
| 1.0.39 | 130 | 4/8/2026 |
| 1.0.38 | 137 | 3/30/2026 |
| 1.0.37 | 141 | 3/26/2026 |
| 1.0.36 | 146 | 3/24/2026 |
| 1.0.35 | 176 | 3/17/2026 |
| 1.0.34 | 179 | 1/15/2026 |
| 1.0.33 | 176 | 1/7/2026 |
| 1.0.32 | 173 | 12/31/2025 |
| 1.0.31 | 170 | 12/30/2025 |
| 1.0.30 | 416 | 12/8/2025 |
| 1.0.29 | 263 | 11/4/2025 |
| 1.0.28 | 207 | 10/31/2025 |
| 1.0.27 | 185 | 10/3/2025 |
| 1.0.26 | 258 | 9/23/2025 |