mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-10 00:27:05 -06:00
* cli: ensure ordering of rpc server messages Sending lots of messages to a stream would block them around the async tokio mutex, which is "fair" so doesn't preserve ordering. Instead, use the write_loop approach I introduced to the server_multiplexer for the same reason some time ago. * fix clippy