Compare commits

..
Author SHA1 Message Date
ed8ac913b6
feat: add pub/sub support to dispatcher
Some checks failed
default / dotnet-default-workflow (pull_request) Failing after 1m46s
Notifications are broadcast to zero or more handlers with configurable
publishing strategies (sequential or parallel) and pipeline behavior
support.
2026-07-01 22:00:05 +02:00

View file

@ -39,7 +39,7 @@ internal sealed class NotificationInvoker<TNotification> : NotificationInvoker
static NotificationHandlerDelegate<TNotification> Chain(NotificationHandlerDelegate<TNotification> next, INotificationBehavior<TNotification> behavior) static NotificationHandlerDelegate<TNotification> Chain(NotificationHandlerDelegate<TNotification> next, INotificationBehavior<TNotification> behavior)
{ {
return [StackTraceHidden] (n, ct) => behavior.HandleAsync(n, next, ct); return [StackTraceHidden](n, ct) => behavior.HandleAsync(n, next, ct);
} }
Task Terminal(TNotification n, CancellationToken ct) Task Terminal(TNotification n, CancellationToken ct)