12 lines
264 B
C#
12 lines
264 B
C#
|
|
using StellaOps.Notify.Queue;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StellaOps.Notify.Worker.Handlers;
|
|
|
|
public interface INotifyEventHandler
|
|
{
|
|
Task HandleAsync(NotifyQueueEventMessage message, CancellationToken cancellationToken);
|
|
}
|