feat(worker): add ContinueTask, GetAgents, RefreshAgents hub methods and RunCreated broadcast

This commit is contained in:
Mika Kuns
2026-04-14 14:04:17 +02:00
parent 76473dd92a
commit 6cb8012d82
2 changed files with 30 additions and 1 deletions

View File

@@ -22,4 +22,7 @@ public sealed class HubBroadcaster
public Task TaskUpdated(string taskId) =>
_hub.Clients.All.SendAsync("TaskUpdated", taskId);
public Task RunCreated(string taskId, int runNumber, bool isRetry) =>
_hub.Clients.All.SendAsync("RunCreated", taskId, runNumber, isRetry);
}