We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e30f74 commit b6d4cb9Copy full SHA for b6d4cb9
README.md
@@ -149,12 +149,13 @@ var user = await mediator.InvokeAsync<User>(new CreateUser(...));
149
150
## 📦 Publish API & Behavior
151
152
+Sends a message to zero or more handlers (by convention); all are invoked inline and in parallel.
153
+If any handler fails, `PublishAsync` throws (aggregates) exceptions.
154
+
155
```csharp
156
await mediator.PublishAsync(new OrderShipped(orderId));
157
```
158
-All handlers run in parallel; if any fail, PublishAsync throws.
-
159
## 📊 Performance Benchmarks
160
161
Foundatio.Mediator delivers exceptional performance, getting remarkably close to direct method calls while providing full mediator pattern benefits:
0 commit comments