2020-11-09 18:12:07 +01:00
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Birdmap.API.Services.Hubs
|
|
|
|
|
{
|
|
|
|
|
public class DevicesHub : Hub<IDevicesHubClient>
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger<DevicesHub> _logger;
|
|
|
|
|
|
|
|
|
|
public DevicesHub(ILogger<DevicesHub> logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Task OnConnectedAsync()
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Client connected.");
|
|
|
|
|
|
|
|
|
|
return base.OnConnectedAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Task OnDisconnectedAsync(Exception exception)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Client disconnected.");
|
|
|
|
|
|
|
|
|
|
return base.OnDisconnectedAsync(exception);
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-11 16:55:50 +01:00
|
|
|
|
public Task SendNotification(Guid deviceId, DateTime date, double probability)
|
2020-11-09 18:12:07 +01:00
|
|
|
|
{
|
|
|
|
|
return Clients.All.NotifyDeviceAsync(deviceId, date, probability);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|