kCura.Relativity.DataReaderClient.FullStatus
Represents a status message provided to an OnProcessProgress event.
namespace kCura.Relativity.DataReaderClient
{
public class FullStatus
{
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
public Guid ProcessID { get; set; }
public long TotalRecords { get; set; }
public long TotalRecordsProcessed { get; set; }
public long TotalRecordsProcessedWithWarnings { get; set; }
public long TotalRecordsProcessedWithErrors { get; set; }
public string TotalRecordsDisplay { get; set; }
public string TotalRecordsProcessedDisplay { get; set; }
public double MetadataThroughput { get; set; }
public double FilesThroughput { get; set; }
public IDictionary StatusSuffixEntries { get; }
public FullStatus(long totRecs, long totRecsProc, long totRecsProcWarn, long totRecsProcErr, DateTime sTime, DateTime eTime, string totRecsDisplay, string totRecsProcDisplay, double metadataThroughput, double filesThroughput, Guid theProcessID, IDictionary statusSuffixEntries);
}
}