11 lines
298 B
C#
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);
|
|
}
|