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