ILongTextTapiBridgePool
using System;
using System.Threading;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Download.TapiHelpers
{
public interface ILongTextTapiBridgePool : IDisposable
{
IDownloadTapiBridge Request(CancellationToken token);
void Release(IDownloadTapiBridge bridge);
}
}