Files
voltsrage 24f45851e9
CI / frontend (push) Canceled after 0s
CI / backend (push) Canceled after 8m32s
feature: In-App Simulation Runner (Backend)
2026-08-06 01:52:53 +08:00

11 lines
298 B
C#

namespace VigilCare.Simulation;
/// <summary>
/// Optional post-cluster polling hook. Console hosts display scores/alerts;
/// the API host passes null — polling is a display concern.
/// </summary>
public interface IApiPoller
{
Task PollAndDisplayAsync(Guid encounterId, string simTime);
}