IFileTapiBridgePool
Represents an abstract object used to dynamically create and manage pooled transfer bridges.
Implements the IDisposable
using System;
using System.Threading;
namespace Relativity.DataExchange.Export.VolumeManagerV2.Download.TapiHelpers
{
public interface IFileTapiBridgePool : IDisposable
{
int Count { get; }
IDownloadTapiBridge (IRelativityFileShareSettings , CancellationToken );
}
}