Esempio n. 1
0
 public async ValueTask HandleIntegrationUpdated(object sender, IntegrationUpdatedEventArgs e)
 {
     foreach (var service in IntegrationUpdatedServices)
     {
         await ExecuteAsync((service, e) => service.OnIntegrationUpdated(e), service, e).ConfigureAwait(false);
     }
 }
Esempio n. 2
0
 protected internal virtual ValueTask OnIntegrationUpdated(IntegrationUpdatedEventArgs e)
 => default;