-
|
Hello and thanks for your work on this project! I want to send and receive WebSocket messages concurrently from two dedicated tasks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
|
Currently there's no simple way. However, BiLock is exactly what you want. Just wrap the |
Beta Was this translation helpful? Give feedback.
-
|
If the write task frequently sends some data while read task receives data rarely. Won't that mean that write task will have to wait on |
Beta Was this translation helpful? Give feedback.
-
|
This PR adds The bug of |
Beta Was this translation helpful? Give feedback.
#713
This PR adds
futures-compat implementations, and it's possible to split aCompatWebSocketStream.The bug of
BiLockis tracking in #685 .