Files
BI/server/DongfangHydro.Dashboard.Api/Realtime/IDashboardNotifier.cs
T

12 lines
293 B
C#

using DongfangHydro.Dashboard.Api.Contracts;
namespace DongfangHydro.Dashboard.Api.Realtime;
public interface IDashboardNotifier
{
Task PublishUpdateAsync(
UpdateNodeProgressResultDto update,
DashboardOverviewDto overview,
CancellationToken cancellationToken);
}