Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IAsyncDisposable is not being called after container.Dispose #223

Open
JanVargovsky opened this issue Feb 13, 2020 · 5 comments
Open

IAsyncDisposable is not being called after container.Dispose #223

JanVargovsky opened this issue Feb 13, 2020 · 5 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@JanVargovsky
Copy link

JanVargovsky commented Feb 13, 2020

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 field

public async Task StopAsync(CancellationToken cancellationToken)
{
    foreach (var disposable in _services.GetServices<IAsyncDisposable>())
        await disposable.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.

@dadhi
Copy link
Owner

dadhi commented Feb 13, 2020

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.

@dadhi
Copy link
Owner

dadhi commented Sep 12, 2022

The inspiration from the LightInject https://github.com/seesharper/LightInject/pull/573/files

@dadhi dadhi self-assigned this Sep 12, 2022
@dadhi dadhi added the enhancement New feature or request label Sep 12, 2022
@dadhi dadhi added this to the v6.0.0 milestone Sep 12, 2022
@jeroenwalter
Copy link

Hi,
We're using the Prism WPF library for our application. Prism uses DryLoc.
Any ETA on when we can expect support for IAsyncDisposable in DryLoc?

@dadhi
Copy link
Owner

dadhi commented Oct 17, 2022

@jeroenwalter When time permits. Hope that it will be soon. This is the current feature I am working on.

@dadhi
Copy link
Owner

dadhi commented Mar 3, 2025

Still working on :)

@dadhi dadhi modified the milestones: v6.0.0, v6.1.0 Mar 3, 2025
dadhi added a commit that referenced this issue Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants