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