2016-11-16 22:11:05 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using RabbitMQ.Client;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti
|
|
|
|
|
{
|
2016-11-20 13:34:50 +00:00
|
|
|
|
public interface IQueueRegistration
|
2016-11-16 22:11:05 +00:00
|
|
|
|
{
|
2016-11-20 13:34:50 +00:00
|
|
|
|
string BindQueue(IModel channel);
|
2016-11-16 22:11:05 +00:00
|
|
|
|
|
|
|
|
|
bool Accept(object message);
|
|
|
|
|
Task Visit(object message);
|
|
|
|
|
}
|
|
|
|
|
}
|