ILongTextStreamService
Represents an abstract service to retrieve long text data through a streaming API.
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Relativity.DataExchange.Transfer
{
internal interface ILongTextStreamService : IDisposable
{
Task<LongTextStreamResult> SaveLongTextStreamAsync(LongTextStreamRequest request, CancellationToken token, IProgress<LongTextStreamProgressEventArgs> progress);
}
}