Github user FlorianHockmann commented on the issue:
https://github.com/apache/tinkerpop/pull/903
> We should allow sending multiple requests without waiting for a response
and support unordered responses (based on the request id)
Wouldn't that mean that the server sends responses as soon as they are
ready on the connection that was used to send the request? And couldn't that
result in multiple responses being sent over the same connection in parallel?
In that case I'm afraid that it wouldn't work with the `ClientWebSocket` we're
currently relying on due to this restriction:
> Exactly one send and one receive is supported on each ClientWebSocket
object in parallel.
[Source](https://docs.microsoft.com/dotnet/api/system.net.websockets.clientwebsocket.sendasync?view=netcore-2.1#remarks)
Or did I misunderstand this somehow?
---