1
0
mirror of synced 2024-06-30 15:57:39 +00:00
Tapeti/IQueueRegistration.cs

14 lines
246 B
C#
Raw Normal View History

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