1
0
mirror of synced 2024-07-04 17:30:36 +00:00
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);
}
}