mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
647db9635a
* Renaming Microsoft.Agent.Workflows to Microsoft.Agents.AI.Workflows * Removing local settings. * Removing remining old files from merge.
25 lines
869 B
C#
25 lines
869 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows;
|
|
|
|
/// <summary>
|
|
/// Base class for SuperStep-scoped events, for example, <see cref="SuperStepCompletedEvent"/>
|
|
/// </summary>
|
|
[JsonDerivedType(typeof(SuperStepStartedEvent))]
|
|
[JsonDerivedType(typeof(SuperStepCompletedEvent))]
|
|
public class SuperStepEvent(int stepNumber, object? data = null) : WorkflowEvent(data)
|
|
{
|
|
/// <summary>
|
|
/// The zero-based index of the SuperStep associated with this event.
|
|
/// </summary>
|
|
public int StepNumber => stepNumber;
|
|
|
|
/// <inheritdoc/>
|
|
public override string ToString() =>
|
|
this.Data is not null ?
|
|
$"{this.GetType().Name}(Step = {this.StepNumber}, Data: {this.Data.GetType()} = {this.Data})" :
|
|
$"{this.GetType().Name}(Step = {this.StepNumber})";
|
|
}
|