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