Exemplo n.º 1
0
 // dev note: rewrite raw data counters "the analyzer handlers" to use the existing .NET thread progress and cancellation callbacks
 // e.g. ProgressChangedEventHandler, ReportProgress, OnProgressChanged, CancelAsync, WorkerSupportsCancellation
 public void GetCountingProcessorStatus()
 {
     if (handler != null)
     {
         status = handler.GetStatus();
     }
 }
Exemplo n.º 2
0
 public CountersStatus(RawStatus rs)
 {
     if (rs == null)
     {
         Reason = "No counting processor status";
         status = String.Empty;
         return;
     }
     status = rs.ToString();
 }
Exemplo n.º 3
0
 // wrapper over LJD analyzer code for now
 public Supporter()
 {
     status = new RawStatus();
 }
Exemplo n.º 4
0
 public CountersStatus(RawStatus rs)
 {
     if (rs == null)
     {
         Reason = "No counting processor status";
         status = String.Empty;
         return;
     }
     status = rs.ToString();
 }
Exemplo n.º 5
0
 // wrapper over LJD analyzer code for now
 public Supporter()
 {
     status = new RawStatus();
 }
Exemplo n.º 6
0
 // dev note: rewrite raw data counters "the analyzer handlers" to use the existing .NET thread progress and cancellation callbacks
 // e.g. ProgressChangedEventHandler, ReportProgress, OnProgressChanged, CancelAsync, WorkerSupportsCancellation
 public void GetCountingProcessorStatus()
 {
     if (handler != null)
         status = handler.GetStatus();
 }