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
currently when waiting for a recv, there is no way to interrupt it (probably excluding futures shenanigans most would want to avoid)
this is problematic if (as an example) the user tells the program to quit, then it can't gracefully do that while waiting on a recv.
adding a version of recv with a timeout would mean the task waiting on it can periodically check if it should stop waiting due to other reasons
The text was updated successfully, but these errors were encountered:
currently when waiting for a recv, there is no way to interrupt it (probably excluding futures shenanigans most would want to avoid)
this is problematic if (as an example) the user tells the program to quit, then it can't gracefully do that while waiting on a recv.
adding a version of recv with a timeout would mean the task waiting on it can periodically check if it should stop waiting due to other reasons
The text was updated successfully, but these errors were encountered: