FastStream STOMP broker
Project description
FastStream STOMP broker
How To Use
Install the package:
uv add faststream-stomp
poetry add faststream-stomp
Basic usage:
import asyncio
import faststream
import faststream_stomp
import stompman
server = stompman.ConnectionParameters(host="127.0.0.1", port=61616, login="admin", passcode="password")
broker = faststream_stomp.StompBroker(stompman.Client([server]))
@broker.subscriber("first")
@broker.publisher("second")
def _(message: str) -> str:
print(message) # this will print message from startup
return "Hi from first handler!"
@broker.subscriber("second")
def _(message: str) -> None:
print(message) # this will print message from first handler
app = faststream.FastStream(broker)
@app.after_startup
async def send_first_message() -> None:
await broker.connect()
await broker.publish("Hi from startup!", "first")
if __name__ == "__main__":
asyncio.run(app.run())
Also there are StompRouter and TestStompBroker for testing. It works similarly to built-in brokers from FastStream, I recommend to read the original FastStream documentation.
Caveats
- When exception is raised in consumer handler, the message will be nacked (FastStream doesn't do this by default)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file faststream_stomp-0.4.0.tar.gz.
File metadata
- Download URL: faststream_stomp-0.4.0.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7c5cff79b82159c162d154af86ba737eff19e3899f9772f619014569c36d173
|
|
| MD5 |
72c73fdc7ba7703948cfad040597665c
|
|
| BLAKE2b-256 |
2d4b465440e24d787dc05aff8b99de90263548856b648388256638383bf90213
|
File details
Details for the file faststream_stomp-0.4.0-py3-none-any.whl.
File metadata
- Download URL: faststream_stomp-0.4.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.27
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92f469214df35cb38839127385fe6de8c4b9827b71968c590a26cff6aca6c680
|
|
| MD5 |
068523950c899954ee91e08efe00b068
|
|
| BLAKE2b-256 |
0777293b4ce81e90998611b4fbad2d4930986a4376a2e61eebba9220e5937f5c
|