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