1
0
mirror of synced 2024-07-03 09:00:36 +00:00
Tapeti/IPublisher.cs
2016-12-14 20:28:17 +01:00

17 lines
294 B
C#

using System.Threading.Tasks;
using RabbitMQ.Client;
namespace Tapeti
{
public interface IPublisher
{
Task Publish(object message);
}
public interface IAdvancedPublisher : IPublisher
{
Task Publish(object message, IBasicProperties properties);
}
}