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
The goal for the listen() function is to be non-blocking.
Every message that is received should be printed straight to the command line for now.
It should also allow multiple connections at the same time, to prevent issues for this case.
The send() function should be asynchronous aswell.
The main problem is the listen() function.
The text was updated successfully, but these errors were encountered:
The test for the sync versions of these functions pass.
I am not entirely sure if the test for the async versions is implemented correctly, but worth a try :D
This should make it easier to verify the intended behaviour
The goal for the
listen()
function is to be non-blocking.Every message that is received should be printed straight to the command line for now.
It should also allow multiple connections at the same time, to prevent issues for this case.
The
send()
function should be asynchronous aswell.The main problem is the listen() function.
The text was updated successfully, but these errors were encountered: