1
0
mirror of synced 2024-07-03 09:00:36 +00:00
Tapeti/IMessageHandlerRegistration.cs
2016-11-17 09:05:39 +01:00

14 lines
257 B
C#

using System.Threading.Tasks;
using RabbitMQ.Client;
namespace Tapeti
{
public interface IMessageHandlerRegistration
{
void ApplyTopology(IModel channel);
bool Accept(object message);
Task Visit(object message);
}
}