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;
 }
コード例 #3
0
 public PerformanceMonitorService(IPerformanceMonitorDataService performanceMonitorDataService, IPerformanceCounterService performanceCounterService)
 {
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService     = performanceCounterService;
 }
 public PerformanceMonitorHeartBeat(IPerformanceMonitorWorkerService performanceMonitorWorkerService, IPerformanceMonitorService performanceMonitorService, IPerformanceMonitorDataService performanceMonitorDataService)
 {
     _performanceMonitorWorkerService = performanceMonitorWorkerService;
     _performanceMonitorService       = performanceMonitorService;
     _performanceMonitorDataService   = performanceMonitorDataService;
 }
 public PerformanceMonitorHeartBeat(IPerformanceMonitorWorkerService performanceMonitorWorkerService,IPerformanceMonitorService performanceMonitorService, IPerformanceMonitorDataService performanceMonitorDataService)
 {
     _performanceMonitorWorkerService = performanceMonitorWorkerService;
     _performanceMonitorService = performanceMonitorService;
     _performanceMonitorDataService = performanceMonitorDataService;
 }
 public PerformanceMonitorService(IPerformanceMonitorDataService performanceMonitorDataService, IPerformanceCounterService performanceCounterService)
 {
     _performanceMonitorDataService = performanceMonitorDataService;
     _performanceCounterService = performanceCounterService;
 }