Refactored DashboardChangeNotifier and IDashboardChangeNotifier to use async notification with improved error handling and logging. Updated SqlDashboardStorage to call the new async notification method after dashboard changes, ensuring non-blocking and reliable client updates.
7 lines
112 B
C#
7 lines
112 B
C#
namespace DbFirst.API.Dashboards;
|
|
|
|
public interface IDashboardChangeNotifier
|
|
{
|
|
Task NotifyChangedAsync();
|
|
}
|