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