iridium-stomp
An asynchronous STOMP 1.2 client library for Rust.
Early Development: This library is heavily tested (150+ unit and fuzz tests) but has not yet been battle-tested in production environments. APIs may change. Use with appropriate caution.
Motivation
STOMP is deceptively simple on the surface—text-based frames, straightforward
commands, easy to read with nc or telnet. But the details matter:
- Heartbeats need to be negotiated correctly, or your connection dies unexpectedly
- TCP chunking means frames can arrive in arbitrary pieces, and your parser better handle that gracefully
- Binary bodies with embedded NUL bytes require content-length headers, which many implementations get wrong
- Reconnection should be automatic and transparent, not something you have to build yourself
I wanted a library that handled all of this correctly, without me having to think about it every time I wrote application code.
Design Goals
-
Async-first architecture — Built on Tokio from the ground up, not bolted on as an afterthought.
-
Correct frame parsing — Handles arbitrary TCP chunk boundaries, binary bodies with embedded NULs, and the full STOMP 1.2 frame format.
-
Automatic heartbeat management — Negotiates heartbeat intervals per the spec, sends heartbeats when idle, and detects missed heartbeats from the server.
-
Transparent reconnection — Exponential backoff, automatic resubscription, and pending message cleanup on disconnect.
-
Small, explicit API — One way to do things, clearly documented, easy to understand.
-
Production-ready testing — 150+ tests including fuzz testing, stress testing, and regression capture for previously-failing edge cases.
Non-Goals
There are some things this library intentionally does not try to be:
- A full STOMP server implementation
- A message queue abstraction layer
- Compatible with STOMP versions prior to 1.2
- A broker-specific client (ActiveMQ extensions, RabbitMQ-specific features)
iridium-stomp is a STOMP 1.2 client library. If you need broker-specific
features, you can pass custom headers through subscribe_with_headers or
SubscriptionOptions, but the library itself stays protocol-focused.
Installation
Add to your Cargo.toml:
[]
= { = "https://github.com/bsiegfreid/iridium-stomp", = "main" }
Quick Start
use ;
async
Features
Heartbeat Negotiation
Heartbeats are negotiated automatically during connection. Use the provided
constants or the Heartbeat struct for type-safe configuration:
use ;
// Use predefined constants
let conn = connect.await?;
let conn = connect.await?;
// Or use the Heartbeat struct for custom intervals
let hb = new; // send every 5s, expect every 10s
let conn = connect.await?;
// Create from Duration for symmetric intervals
use Duration;
let hb = from_duration;
The library handles the negotiation (taking the maximum of client and server preferences), sends heartbeats when the connection is idle, and closes the connection if the server stops responding.
Subscription Management
Subscribe to destinations with automatic resubscription on reconnect:
use AckMode;
// Auto-acknowledge (server considers delivered immediately)
let sub = conn.subscribe.await?;
// Client-acknowledge (cumulative)
let sub = conn.subscribe.await?;
// Client-individual (per-message acknowledgement)
let sub = conn.subscribe.await?;
For broker-specific headers (durable subscriptions, selectors, etc.):
use SubscriptionOptions;
use AckMode;
let options = SubscriptionOptions ;
let sub = conn.subscribe_with_options.await?;
Cloneable Connection
The Connection is cloneable and thread-safe. Multiple tasks can share the
same connection:
let conn = connect.await?;
let conn2 = conn.clone;
spawn;
Custom CONNECT Headers
Use ConnectOptions to customize the STOMP CONNECT frame for broker-specific
requirements like durable subscriptions or virtual hosts:
use ;
let options = new
.client_id // Required for ActiveMQ durable subscriptions
.host // Virtual host (RabbitMQ)
.accept_version // Version negotiation
.header; // Broker-specific headers
let conn = connect_with_options.await?;
Receipt Confirmation
Request delivery confirmation from the broker using RECEIPT frames:
use ;
use Duration;
let msg = new
.header
.receipt // Request receipt with this ID
.set_body;
// Send and wait for confirmation (with timeout)
conn.send_frame_confirmed.await?;
// Or handle receipts manually
let msg = new
.header
.receipt
.set_body;
conn.send_frame_with_receipt.await?;
conn.wait_for_receipt.await?;
Error Handling
Server errors are surfaced as first-class types for type-safe handling:
use ;
while let Some = conn.next_frame.await
CLI
An interactive CLI is included for testing and ad-hoc messaging. Install with
the cli feature:
Or run from source:
CLI Usage
# Connect and subscribe to a queue
# Connect with custom credentials
# Subscribe to multiple queues
Interactive commands:
> send /queue/test Hello, World!
Sent to /queue/test
> sub /queue/other
Subscribed to: /queue/other
> help
Commands:
send <destination> <message> - Send a message
sub <destination> - Subscribe to a destination
quit - Exit
> quit
Disconnecting...
Running the Examples
Start a local STOMP broker (RabbitMQ with STOMP plugin):
Run the quickstart example:
Testing
The library includes comprehensive tests:
# Run all tests
# Run specific test suites
Integration Tests in CI
The CI workflow includes a smoke integration test that verifies the library works against a real RabbitMQ broker with STOMP enabled. This test ensures end-to-end functionality beyond unit tests.
How it works:
-
Broker Setup: CI builds a Docker image with RabbitMQ 3.11 and the STOMP plugin pre-enabled (see
.github/docker/rabbitmq-stomp/Dockerfile) -
Readiness Checks: Before running tests, CI performs multi-stage readiness verification:
- Waits for RabbitMQ management API to respond (indicates broker is starting)
- Verifies STOMP plugin is fully enabled via the management API
- Confirms STOMP port 61613 accepts TCP connections
This ensures the broker is truly ready, preventing flaky test failures from timing issues.
-
Smoke Test: Runs
tests/stomp_smoke.rswhich:- Attempts a STOMP CONNECT with retry logic (5 attempts with backoff)
- Verifies the broker responds with CONNECTED frame
- Reports detailed connection diagnostics on failure
-
Debugging: If tests fail, CI automatically dumps RabbitMQ logs for troubleshooting
Running integration tests locally:
Use the provided helper script which mimics the CI workflow:
Or manually with docker-compose:
# Start RabbitMQ with STOMP
# Wait for it to be ready (management UI at http://localhost:15672)
# Then run the smoke test
RUN_STOMP_SMOKE=1
# Cleanup
The smoke test is skipped by default unless RUN_STOMP_SMOKE=1 is set, since it requires an external broker.
Contributing
See CONTRIBUTING.md for development setup, running tests locally, and CI information.
License
This project is licensed under the MIT License. See LICENSE for details.
About iridiumdesign
Iridiumdesign—and the iridiumdesign.com domain—started back in 2000 while I was finishing design school. At the time, it was meant to support freelance work in graphic design and web development.
Over the years, as I moved into full-time corporate software engineering, Iridiumdesign became less of a business and more of a sandbox. It's where I experiment, learn, and build things that don't always fit neatly into my day job.
These days I'm a senior software engineer and don't do much design work anymore, but the iridium name stuck. I use it as a prefix for my personal libraries and projects so they're easy to identify and group together.
iridium-stomp is one of those projects: something I built because I needed it, learned from, and decided was worth sharing.
Brad Siegfreid