Compare commits

..
Author SHA1 Message Date
9232716901
feat: add pub/sub support to dispatcher
All checks were successful
default / dotnet-default-workflow (pull_request) Successful in 1m56s
default / dotnet-default-workflow (push) Successful in 1m49s
Notifications are broadcast to zero or more handlers with configurable
publishing strategies (sequential or parallel) and pipeline behavior
support.
2026-07-01 22:17:40 +02:00

View file

@ -39,7 +39,7 @@ internal sealed class NotificationInvoker<TNotification> : NotificationInvoker
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)