Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Purview/IBackgroundJobRunner.cs
T
eoindoherty1andGitHub a151f10cc2 .NET Purview Middleware: Improve Background Job Runner Injection (#3256)
* Clean up background job dependency injection

* Fix xml documentation grammar
2026-01-16 19:20:35 +00:00

17 lines
357 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Threading.Tasks;
namespace Microsoft.Agents.AI.Purview;
/// <summary>
/// An interface for a class that manages background jobs.
/// </summary>
internal interface IBackgroundJobRunner
{
/// <summary>
/// Shutdown the background jobs.
/// </summary>
Task ShutdownAsync();
}