public HealthService(
     IElasticsearchHealthService elasticsearchHealthService,
     IAngleSharpService angleSharpService,
     IHealthSettings healthSettings,
     IHttpServer httpServer,
     ISqlService sqlService)
 {
     _elasticsearchHealthService = elasticsearchHealthService;
     _angleSharpService          = angleSharpService;
     _healthSettings             = healthSettings;
     _httpServer = httpServer;
     _sqlService = sqlService;
 }
Exemple #2
0
 public CharacterHealth(IHealthSettings settings, IRespawnable <CharacterSpawnParameters> respawnable)
 {
     _settings    = settings;
     _respawnable = respawnable;
     PreInitialize();
 }
Exemple #3
0
 public HealthController(IHealthService healthService, IHealthSettings healthSettings)
 {
     _healthService  = healthService;
     _healthSettings = healthSettings;
 }
 public HealthService(IHealthSettings healthSettings)
 {
     _healthSettings = healthSettings;
 }