16 lines
293 B
C#
Raw Normal View History

using RabbitMQ.Client;
using System;
namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ
{
2017-04-29 21:58:11 -07:00
public interface IRabbitMQPersistentConnection
: IDisposable
{
bool IsConnected { get; }
bool TryConnect();
IModel CreateModel();
}
}