IErrorFileWriter
using kCura.WinEDDS.Exporters;
using System;
using System.Threading.Tasks;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Writers
{
public interface IErrorFileWriter : IDisposable
{
void Write(ErrorFileWriter.ExportFileType type, ObjectExportInfo documentInfo, string fileLocation, string errorText);
Task WriteAsync(ErrorFileWriter.ExportFileType type, ObjectExportInfo documentInfo, string fileLocation, string errorText);
}
}