Exemple #1
0
 public void SetHealth(string key, HealthRecord healthRecord)
 {
     SetHealthAsync(key, healthRecord).GetAwaiter().GetResult();
 }
Exemple #2
0
 public async Task SetHealthAsync(string key, HealthRecord healthRecord)
 {
     HealthRecords[key] = healthRecord;
     _aggregateRecord   = await InternalIsHealthyAsync();
 }