14 lines
246 B
C#
14 lines
246 B
C#
using System.Threading.Tasks;
|
|
using RabbitMQ.Client;
|
|
|
|
namespace Tapeti
|
|
{
|
|
public interface IQueueRegistration
|
|
{
|
|
string BindQueue(IModel channel);
|
|
|
|
bool Accept(object message);
|
|
Task Visit(object message);
|
|
}
|
|
}
|