public InMemoryTransferStatistics()
 {
     errors = new AppendOnlyConcurrentLinkedList <KeyValuePair <string, Exception> >();
 }
 public InMemoryTransferStatistics(IErrorDetailsProvider errorDetailsProvider)
     : base(errorDetailsProvider)
 {
     errors = new AppendOnlyConcurrentLinkedList<KeyValuePair<string, string>>();
 }
Пример #3
0
 public InMemoryTransferStatistics(IErrorDetailsProvider errorDetailsProvider)
     : base(errorDetailsProvider)
 {
     errors = new AppendOnlyConcurrentLinkedList <KeyValuePair <string, string> >();
 }
Пример #4
0
 public ThreadSafeTransferStatistics()
 {
     timer  = new Stopwatch();
     errors = new AppendOnlyConcurrentLinkedList <KeyValuePair <string, Exception> >();
 }
 public InMemoryTransferStatistics()
 {
     errors = new AppendOnlyConcurrentLinkedList<KeyValuePair<string, Exception>>();
 }