1
0
mirror of synced 2024-07-01 16:27:40 +00:00
Tapeti/Config/IMessageMiddleware.cs

11 lines
191 B
C#
Raw Normal View History

2016-12-11 14:08:58 +00:00
using System;
using System.Threading.Tasks;
2016-12-11 14:08:58 +00:00
namespace Tapeti.Config
{
public interface IMessageMiddleware
{
Task Handle(IMessageContext context, Func<Task> next);
2016-12-11 14:08:58 +00:00
}
}