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
Hi, I've been making a userspace filesystem library for Rust (planning to wrap both FUSE and Dokany - with the FUSE half pretty much done already), and I noticed one problem that's stopping me from doing the dokany side - lack of async support. I'm using the low-level FUSE functions which have a "reply" callback, rather than synchronously using the return value from the function.
Is anything liked this planned or in the works for Dokany?
The text was updated successfully, but these errors were encountered:
There is a pull request opened just for that actually #307
A large part of this pull request was merged. I am not planning to merge the remaining part (see my comment here) but I am open to pull request!
The PR is a rewrite of the library with a lot of great ideas (memory pull / threading / ...) which are now merged and took a lot of effort to happen.
I did not merge the redesign of the new async API to avoid adding another layer of complexity while knowing there were still pending issues 12 and having an async API wasn't requested by the community since.
Since now the v2 library is stable as v1 was, it looks more realistic to have the new async API merged and have the known issues being fixed.
Hi, I've been making a userspace filesystem library for Rust (planning to wrap both FUSE and Dokany - with the FUSE half pretty much done already), and I noticed one problem that's stopping me from doing the dokany side - lack of async support. I'm using the low-level FUSE functions which have a "reply" callback, rather than synchronously using the return value from the function.
Is anything liked this planned or in the works for Dokany?
The text was updated successfully, but these errors were encountered: