Fix long time update AgentName

This commit is contained in:
2025-09-17 14:47:28 +07:00
parent cee3902a4d
commit 98fdfb9793
3 changed files with 51 additions and 7 deletions

View File

@@ -11,6 +11,12 @@ namespace Managing.Application.Abstractions.Grains
/// <param name="agentName">The display name of the agent.</param>
Task InitializeAsync(int userId, string agentName);
/// <summary>
/// Updates only the agent name without recalculating summary.
/// </summary>
/// <param name="agentName">The new agent name.</param>
Task UpdateAgentNameAsync(string agentName);
/// <summary>
/// Generates a summary of the agent's stats for the AgentRegistryGrain.
/// </summary>