Added RabbitMq support
This commit is contained in:
7
Birdmap.BLL/Interfaces/ICommunicationService.cs
Normal file
7
Birdmap.BLL/Interfaces/ICommunicationService.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Birdmap.BLL.Interfaces
|
||||
{
|
||||
public interface ICommunicationService
|
||||
{
|
||||
public bool IsConnected { get; }
|
||||
}
|
||||
}
|
7
Birdmap.BLL/Interfaces/ICommunicationServiceProvider.cs
Normal file
7
Birdmap.BLL/Interfaces/ICommunicationServiceProvider.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Birdmap.BLL.Interfaces
|
||||
{
|
||||
public interface ICommunicationServiceProvider
|
||||
{
|
||||
public ICommunicationService Service { get; }
|
||||
}
|
||||
}
|
@ -10,6 +10,5 @@ namespace Birdmap.BLL.Interfaces
|
||||
IMqttClientDisconnectedHandler,
|
||||
IMqttApplicationMessageReceivedHandler
|
||||
{
|
||||
public bool IsConnected { get; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user