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
{{ message }}
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
These Mutex implementations are for sync code, and Streams is async. We should implement these for tokio::sync::Mutex, futures::sync::Mutex, and the like. However, what are the use case of these? Why can't people just use whatever they want, when implementing a custom Transport?
The text was updated successfully, but these errors were encountered:
I'd personally be more in favor of removal, every other aspect of the implementation is async, i'm not sure I see much of a benefit in retaining sync based Mutex's in a fully async implementation.
These
Mutex
implementations are forsync
code, and Streams isasync
. We should implement these fortokio::sync::Mutex
,futures::sync::Mutex
, and the like. However, what are the use case of these? Why can't people just use whatever they want, when implementing a customTransport
?The text was updated successfully, but these errors were encountered: