Files
git.stella-ops.org/src/Signals/StellaOps.Signals/Services/ICallgraphIngestionService.cs
2026-02-01 21:37:40 +02:00

18 lines
451 B
C#

using StellaOps.Signals.Models;
using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Signals.Services;
/// <summary>
/// Handles ingestion of callgraph artifacts.
/// </summary>
public interface ICallgraphIngestionService
{
/// <summary>
/// Ingests the supplied callgraph request.
/// </summary>
Task<CallgraphIngestResponse> IngestAsync(CallgraphIngestRequest request, CancellationToken cancellationToken);
}