Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Images.Lines.IproFullTextLoadFileEntry
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Images.Lines
{
public abstract class IproFullTextLoadFileEntry : IFullTextLoadFileEntry, IDisposable
{
protected readonly IFieldService FieldService;
protected readonly LongTextHelper LongTextHelper;
protected IproFullTextLoadFileEntry(IFieldService fieldService, LongTextHelper longTextHelper, ILog logger, IFullTextLineWriter fullTextLineWriter);
public void WriteFullTextLine(ObjectExportInfo artifact, string batesNumber, int pageNumber, long pageOffset, IRetryableStreamWriter writer, CancellationToken token);
protected abstract int GetTextSourceFieldId(ObjectExportInfo artifact);
protected abstract string GetTextColumnName();
public void Dispose();
}
}