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
In what I'm writing, I have to send some pretty large packets, which get fragmented. I have a progress bar, and I'd like to update it as fragments are getting received, so it doesn't just look like it stalled when it's receiving fragments. An easy way to access the current fragment count and the total fragment count would be appreciated.
The text was updated successfully, but these errors were encountered:
Remember there can be multiple incoming large packets that can each be fragmented individually, so there is no easy single statistic that I could put in the peer to monitor this.
The best way to monitor progress is to do your own fragmentation for those cases where the user needs to see some sort of progress score, and keep your own score on them as they come in, because this is usually a very application specific thing to track, like sending large files, downloads, etc
In what I'm writing, I have to send some pretty large packets, which get fragmented. I have a progress bar, and I'd like to update it as fragments are getting received, so it doesn't just look like it stalled when it's receiving fragments. An easy way to access the current fragment count and the total fragment count would be appreciated.
The text was updated successfully, but these errors were encountered: