IRetryableStreamWriter
using Relativity.DataExchange.Export.VolumeManagerV2.Batches;
using System;
using System.Threading;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Writers
{
public interface IRetryableStreamWriter : IDisposable, IStateful
{
void WriteEntry(string loadFileEntry, CancellationToken token);
void WriteChunk(string chunk, CancellationToken token);
void FlushChunks(CancellationToken token);
void InitializeFile(CancellationToken token);
}
}