-
Notifications
You must be signed in to change notification settings - Fork 85
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
Progress callback for SendObject and GetObject #153
Comments
not currently. |
Could you suggest me a way to get the progress information? What files or functions should I work on to get the file transfer progress? |
are you using FUSE or just the MTP part ? what kind of progress do you want (console, graphics)? Should it be timed (every 100ms) or by throughput (say every 100kb)? The easiest is probably to insert somehting in bulkRead/bulkWrite (mtp.go). That doesnt cover the request/response metadata, though. |
I have a question in that case: how do I get the Thanks |
the MTP library already does the chunking. You just have to add a callback there. If you want timed output, add |
Got it. Thanks! |
I am trying to upload/download files using MTP but I couldn't find any callbacks for receiving the progress.
Is there a way to get the progress information for SendObject and GetObject?
The text was updated successfully, but these errors were encountered: