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.
28 lines
849 B
C#
28 lines
849 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using Microsoft.Shared.Diagnostics;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows;
|
|
|
|
/// <summary>
|
|
/// This attribute indicates that a message handler streams messages during its execution.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
|
|
public sealed class StreamsMessageAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// The type of the message that the handler yields.
|
|
/// </summary>
|
|
public Type Type { get; }
|
|
|
|
/// <summary>
|
|
/// Indicates that the message handler yields streaming messages during the course of execution.
|
|
/// </summary>
|
|
public StreamsMessageAttribute(Type type)
|
|
{
|
|
// This attribute is used to mark executors that yield messages.
|
|
this.Type = Throw.IfNull(type);
|
|
}
|
|
}
|