server-master/srcs/PhoenixLib.Messaging/IMessageConsumer.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
213 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace PhoenixLib.ServiceBus
{
public interface IMessageConsumer<in T>
{
Task HandleAsync(T notification, CancellationToken token);
}
}