Ejemplo n.º 1
0
 public ProcessMonitorService ( IPerformanceCounterService performanceCounterService,
                                IPerformanceCounterInstanceInfoService performanceCounterInstanceInfoService,
                                IMainModel model )
 {
     _performanceCounterService = performanceCounterService;
     _performanceCounterInstanceInfoService = performanceCounterInstanceInfoService;
     _model = model;
 }
 public PerformanceMonitorWorkerService(
         IPerformanceMonitorService performanceMonitorService,
         IPerformanceMonitorDataService performanceMonitorDataService,
         IPerformanceCounterService performanceCounterService,
         INotifier notifier
     )
 {
     _performanceMonitorService = performanceMonitorService;
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService = performanceCounterService;
     _notifier = notifier;
 }
 public PerformanceMonitorWorkerService(
     IPerformanceMonitorService performanceMonitorService,
     IPerformanceMonitorDataService performanceMonitorDataService,
     IPerformanceCounterService performanceCounterService,
     INotifier notifier
     )
 {
     _performanceMonitorService     = performanceMonitorService;
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService     = performanceCounterService;
     _notifier = notifier;
 }
Ejemplo n.º 4
0
 public PerformanceMonitorService(IPerformanceMonitorDataService performanceMonitorDataService, IPerformanceCounterService performanceCounterService)
 {
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService     = performanceCounterService;
 }
Ejemplo n.º 5
0
 public TimerHandler(IPerformanceCounterService counterService)
 {
     _counterService = counterService;
 }
 public PerformanceMonitorService(IPerformanceMonitorDataService performanceMonitorDataService, IPerformanceCounterService performanceCounterService)
 {
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService = performanceCounterService;
 }