1
0
mirror of synced 2024-11-05 02:59:16 +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);
}
}