1
0
mirror of synced 2024-06-17 18:37:39 +00:00
Tapeti/Tapeti/IMessageHandlerRegistration.cs

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);
}
}