using System.Threading; using System.Threading.Tasks; namespace StellaOps.Graph.Indexer.Ingestion.Sbom; public interface IGraphDocumentWriter { Task WriteAsync(GraphBuildBatch batch, CancellationToken cancellationToken); }