Files
Hyperbar/Hyperbar/INotificationHandler.cs
T
2024-02-11 18:09:22 +00:00

10 lines
234 B
C#

namespace Hyperbar;
public interface INotificationHandler<in TNotification> :
IHandler
where TNotification :
INotification
{
Task Handle(TNotification args,
CancellationToken cancellationToken = default);
}