Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![ty](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ty/main/assets/badge/v0.json)](https://github.com/astral-sh/ty)

`faststream-outbox` is a [FastStream](https://faststream.airt.ai) broker integration for the **transactional outbox pattern** — a Postgres table is the message queue.
`faststream-outbox` is a [FastStream](https://faststream.ag2.ai) broker integration for the **transactional outbox pattern** — a Postgres table is the message queue.

A producer writes a domain entity and an outbox row in the *same* SQLAlchemy transaction by calling `broker.publish(body, queue=..., session=session)`. A separate subscriber polls the table and relays each row to a real message bus (Kafka, RabbitMQ, NATS, Redis…) with a single decorator — or processes the rows in-place if you don't have a downstream broker.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

</div>

`faststream-outbox` is a [FastStream](https://faststream.airt.ai) broker
`faststream-outbox` is a [FastStream](https://faststream.ag2.ai) broker
integration for the **transactional outbox pattern** — a Postgres table is
the message queue. A producer writes a domain entity and an outbox row in
the *same* SQLAlchemy transaction; a subscriber polls the table with
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/messaging-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ OUTBOX_TABLE = make_outbox_table(Base.metadata, table_name="outbox")
```

The broker and routers are wired with a real DI container
([modern-di](https://modern-di.readthedocs.io/) here, but any container works):
([modern-di](https://modern-di.modern-python.org/) here, but any container works):

```python title="ioc.py"
from modern_di import Group, Scope, providers
Expand Down
Loading