-
-
Notifications
You must be signed in to change notification settings - Fork 61
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
Async File Systems #53
Comments
No plan, as I don't have a personal use for this feature. |
When looking at the IFileSystem interface, would you want every method to have an Async counter part? When adding to the existing implementations, would you rather just call When the implementation only provides a Async implementations (All of the files are in Azure Blob), should the Sync methods just call the Async methods with |
Ooops, sorry to get back to you only now, I thought I responded immediately.
I would believe.
Yes, except that all methods should return a ValueTask instead.
Likely yes. |
FYI: Someone made source generator that generates sync methods from async methods; https://github.com/zompinc/sync-method-generator. |
Yep, I tried to reuse the technique I used for Generate automatically async/await code from sync code with Roslyn that I'm using for another project, but as the generator was specific to the library, I took some shortcuts and so it's not reusable as it is. Would take quite some time to make it working, possible, but time costly. |
Is there any plans to allow the implementation of Async File Systems, EG: Azure Blob?
The text was updated successfully, but these errors were encountered: