▲ | degamad 4 days ago | ||||||||||||||||
You say "round trip", but you mean "return trip", right? Because if I understand correctly, you don't queue the requests and then perform a single request/response cycle (a "round trip"), you send a bunch of requests as they happen with no response expected, then when an await happens, you send a message saying "okay, that's all, please send me the result" and get a response. | |||||||||||||||||
▲ | kentonv 3 days ago | parent | next [-] | ||||||||||||||||
In HTTP batch mode, they're all sent as a batch. In WebSocket mode, yes, you are sending messages with each call. But you're not waiting for anything before sending the next message. It's not a round trip until you await something. As far as round trips are concerned, there is really no difference between sending multiple messages vs. a single batch message, if you are ultimately only waiting for one reply at the end. | |||||||||||||||||
▲ | crabmusket 4 days ago | parent | prev [-] | ||||||||||||||||
No, the requests are queued and sent as a batch. | |||||||||||||||||
|