1
0
mirror of synced 2024-07-02 16:47:39 +00:00
Tapeti/IMessageHandlerRegistration.cs

14 lines
257 B
C#
Raw Normal View History

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