17 lines
293 B
C#
17 lines
293 B
C#
|
using RabbitMQ.Client;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ
|
|||
|
{
|
|||
|
|
|||
|
public interface IRabbitMQPersisterConnection
|
|||
|
: IDisposable
|
|||
|
{
|
|||
|
bool IsConnected { get; }
|
|||
|
|
|||
|
bool TryConnect();
|
|||
|
|
|||
|
IModel CreateModel();
|
|||
|
}
|
|||
|
}
|