2020-11-09 18:12:07 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2020-11-09 18:13:02 +01:00
|
|
|
|
namespace Birdmap.API.Services
|
2020-11-09 18:12:07 +01:00
|
|
|
|
{
|
|
|
|
|
public interface IDevicesHubClient
|
|
|
|
|
{
|
|
|
|
|
Task NotifyDeviceAsync(Guid deviceId, DateTime date, double probability);
|
2020-11-11 20:35:26 +01:00
|
|
|
|
Task NotifyDeviceUpdatedAsync(Guid deviceId);
|
|
|
|
|
Task NotifyAllUpdatedAsync();
|
2020-11-09 18:12:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|