src/ServiceProfiler.EventPipe.Otel/Microsoft.ApplicationInsights.Profiler.Shared/Services.Abstractions/IMetadataWriter.cs (9 lines of code) (raw):
using Microsoft.ServiceProfiler.Contract;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.ApplicationInsights.Profiler.Shared.Services.Abstractions;
internal interface IMetadataWriter
{
Task WriteAsync(string filePath, IEnumerable<ArtifactLocationProperties> locationProperties, CancellationToken cancellationToken);
}