Skip to content
Merged
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 docs/tutorials/cqrs-with-marten.md
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ Wolverine supports three modes of event subscriptions from Marten:
2. Publishing the events as messages through Wolverine. Essentially calling [`IMessageBus.PublishAsync()`](/guide/messaging/message-bus.html#sending-or-publishing-messages) on each event in strict order.
3. User defined operations on a batch of events at a time, again in strict order that the events are appended to the Marten event store.

In all cases, the Event Subscriptions are running in a background process managed either by Marten itself with its [Async Daemon](/events/projections/async-daemon)
In all cases, the Event Subscriptions are running in a background process managed either by Marten itself with its [Async Daemon](https://martendb.io/events/projections/async-daemon.html)
or the [Projection/Subscription Distribution](/guide/durability/marten/distribution) feature in Wolverine.

## Scaling Marten Projections
Expand Down