10 lines
No EOL
213 B
C#
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);
|
|
}
|
|
} |