You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't found that IAsyncDisposable is actually supported and thus not being called. I'm using implementation of IHostedService, so I can run something like
IServiceProvider_services;// injected and stored as a fieldpublicasyncTaskStopAsync(CancellationTokencancellationToken){foreach(vardisposablein_services.GetServices<IAsyncDisposable>())awaitdisposable.DisposeAsync();}
but it is still just a workaround. Do you have a recommended approach how to deal with it? One option that comes to my mind is implement also IDisposable that recalls DisposeAsync but it covers only my implementations and I have to (should) dispose 3rd party code also that is registered too.
The text was updated successfully, but these errors were encountered:
IAsyncDisposable is not yet supported. I am open for PRs.
This should probably need to be added to Container and to Scope.
We need to ensure that the task machinery is not affecting performance of the old Dispose implementations, especially the one for the Scope.
I haven't found that
IAsyncDisposable
is actually supported and thus not being called. I'm using implementation ofIHostedService
, so I can run something likebut it is still just a workaround. Do you have a recommended approach how to deal with it? One option that comes to my mind is implement also
IDisposable
that recallsDisposeAsync
but it covers only my implementations and I have to (should) dispose 3rd party code also that is registered too.The text was updated successfully, but these errors were encountered: