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

11 lines
256 B
C#

using DongfangHydro.Dashboard.Api.Contracts;
namespace DongfangHydro.Dashboard.Api.Realtime;
public interface IDashboardUpdateQueue
{
ValueTask EnqueueAsync(
UpdateNodeProgressResultDto update,
CancellationToken cancellationToken);
}