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, all client operations are wrapped in rust future using async fn syntax. This makes two ordered consecutive operations unordered in results. We should resort to fn operation() -> impl Future to order operations in synchronous part.
The text was updated successfully, but these errors were encountered:
Currently, all client operations are wrapped in rust future using
async fn
syntax. This makes two ordered consecutive operations unordered in results. We should resort tofn operation() -> impl Future
to order operations in synchronous part.The text was updated successfully, but these errors were encountered: