IExportConfig
namespace kCura.WinEDDS
{
public interface IExportConfig
{
int ExportBatchSize { get; }
int ExportIOErrorWaitTime { get; }
int ExportIOErrorNumberOfRetries { get; }
int ExportErrorNumberOfRetries { get; }
int ExportErrorWaitTime { get; }
int ExportLongTextDataGridThreadCount { get; }
bool ExportLongTextObjectManagerEnabled { get; }
int ExportLongTextSqlThreadCount { get; }
int HttpErrorNumberOfRetries { get; }
int HttpErrorWaitTimeInSeconds { get; }
bool TapiForceHttpClient { get; }
string WebApiServiceUrl { get; }
}
}