Relativity.Transfer.Kepler.KeplerServiceBase
namespace Relativity.Transfer.Kepler
{
internal abstract class KeplerServiceBase
{
public RelativityConnectionInfo ConnectionInfo { get; }
public int MaxRetryAttempts { get; set; }
protected ITransferLog Log { get; }
protected KeplerServiceBase(RelativityConnectionInfo connectionInfo, ClientConfiguration configuration, ITransferLog log);
protected T CreateProxy<T>() where T : IDisposable;
}
}