Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartInfo.cs
T
Ben Thomas 647db9635a .NET: Rename workflows projects (#975)
* Renaming Microsoft.Agent.Workflows to Microsoft.Agents.AI.Workflows

* Removing local settings.

* Removing remining old files from merge.
2025-09-29 18:30:45 +00:00

22 lines
735 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Collections.Generic;
namespace Microsoft.Agents.AI.Workflows;
/// <summary>
/// Debug information about the SuperStep starting to run.
/// </summary>
public sealed class SuperStepStartInfo(HashSet<string>? sendingExecutors = null)
{
/// <summary>
/// The unique identifiers of <see cref="Executor"/> instances that sent messages during the previous SuperStep.
/// </summary>
public HashSet<string> SendingExecutors { get; } = sendingExecutors ?? [];
/// <summary>
/// Gets a value indicating whether there are any external messages queued during the previous SuperStep.
/// </summary>
public bool HasExternalMessages { get; init; }
}